-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (26 loc) · 1.63 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ "manifest_version" : 2
, "minimum_chrome_version" : "28.0"
, "default_locale" : "en_US"
, "name" : "__MSG_name_long__"
, "short_name" : "__MSG_name_shrt__"
, "description" : "__MSG_name_desc__"
, "version" : "1.0.0.4"
, "homepage_url" : "https://github.com/eladkarako/Chrome-Extension-Tahoma-CourierNew/issues/"
, "author" : "Elad Karako"
,"offline_enabled" : true
,"content_security_policy" : "base-uri 'self'; style-src 'self'; font-src 'self'; child-src 'self'; sandbox ''; frame-ancestors 'none'; default-src 'none'; script-src 'none'; connect-src 'none'; img-src 'none'; object-src 'none'; media-src 'none'"
,"background" : {
}
,"permissions" : [ "*://*/*"
]
, "content_scripts" : [ {"css": [ "resources/at_document_start.css" ], "all_frames": true, "matches": [ "*://*/*" ], "run_at": "document_start" }
, {"css": [ "resources/at_document_end.css" ], "all_frames": true, "matches": [ "*://*/*" ], "run_at": "document_end" }
, {"css": [ "resources/at_document_idle.css" ], "all_frames": true, "matches": [ "*://*/*" ], "run_at": "document_idle" }
]
,"web_accessible_resources" : [ "resources/*.*"
, "resources/fonts/*.ttf"
]
,"icons" : { "256": "resources/icon.png" }
,"browser_action" : {
}
}