-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
executable file
·40 lines (40 loc) · 1.02 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
{
"name": "Run Javascript",
"description": "Run custom Javascript, each time you visit a website",
"version": "3.0.1",
"permissions": [
"storage",
"activeTab"
],
"browser_action": {
"default_title": "Run Javascript",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon.png",
"32": "icon-32.png",
"48": "icon-48.png",
"64": "icon-64.png",
"96": "icon-96.png",
"128": "icon-128.png",
"256": "icon-256.png"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["lib_jquery_3_3_1.js", "lib_jquery_2_2_4.js", "lib_jquery_1_12_4.js"],
"js": ["lib_jquery_3_3_1.js", "inject.js"],
"run_at": "document_idle"
}
],
"manifest_version": 2
}