-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
46 lines (38 loc) · 1.12 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"manifest_version": 2,
"name" : "Tiny Javascript Injector",
"short_name" : "InjectJS",
"version" : "0.8.3",
"version_name": "Release 2023-02-12",
"description" : "Customize a remote website, without consent",
"author" : "andre-st",
"homepage_url": "https://github.com/andre-st/chrome-injectjs/blob/master/README.md",
"offline_enabled" : true,
"permissions" : [ "storage", "webRequest", "tabs", "webRequestBlocking", "downloads", "http://*/", "https://*/" ],
"minimum_chrome_version": "24",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons":
{
"16" : "image/icon16.png",
"48" : "image/icon48.png",
"128": "image/icon128.png"
},
"browser_action":
{
"default_icon" : "image/icon16-disabled.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"background":
{
"scripts" : [ "settings.js", "background.js" ],
"persistent": true
},
"content_scripts":
[{
"js" : [ "settings.js", "content.js" ],
"matches" : [ "<all_urls>" ],
"all_frames": false,
"run_at" : "document_end"
}]
}