-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathmanifest.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.4.0",
"author": "bam",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"icons": {
"16": "icons/searchin_40px.png",
"48": "icons/searchin_48px.png",
"128": "icons/searchin_128px.png",
"176": "icons/searchin_176px.png"
},
"permissions": [
"contextMenus",
"storage"
],
"background": {
"scripts": [
"src/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/content_script.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"40": "icons/searchin_40px.png"
},
"default_title": "__MSG_browserActionTitle__",
"default_popup": "src/popup.html"
},
"options_page": "src/options.html"
}