-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 982 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "Text Thresher",
"version": "0.0.0",
"manifest_version": 2,
"description": "",
"icons": {
"16": "dist/images/icon-16.png",
"128": "dist/images/icon-128.png"
},
"default_locale": "en",
"browser_action": {
"default_icon": {
"19": "dist/images/icon-19.png",
"38": "dist/images/icon-38.png"
},
"default_title": "text-thresher"
},
"background": {
"persistent": false,
"scripts": ["dist/scripts/event.js"]
},
"options_page": "dist/options.html",
"omnibox": {
"keyword": "txt"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"dist/scripts/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"web_accesible_resources": ["dist/scripts/moduleBundle.js"],
"permissions": [
"activeTab",
"storage",
"tabs",
"management",
"http://*/*",
"https://*/*"
]
}