-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 1009 Bytes
/
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
{
"name": "Think Again",
"description" : "Pause, Think Again, Sure you don't have anywhere better to spend your time?",
"version": "1.0",
"manifest_version": 2,
"browser_action":{
"default_popup": "popup/popup.html",
"default_title": "Think Again"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"js": ["content/elements.js","content/content.js"],
"css": ["content/style.css"]
},
{
"matches": ["<all_urls>"],
"run_at": "document_end",
"js": ["content/content1.js"],
"css": ["content/style.css"]
}
],
"background": {
"scripts":[
"background/initialize.js",
"background/backgroundTabs.js"
],
"persistent": false
},
"options_page": "options/options.html",
"permissions":[
"background",
"tabs",
"storage"
]
}