forked from typeling1578/Search-on-Google-Lens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (47 loc) · 1.11 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
47
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.4.1",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{56b8308e-566b-4dc0-9957-f6341ceb8552}",
"strict_min_version": "91.0"
}
},
"icons": {
"48": "icons/icon-48x48.png",
"96": "icons/icon-96x96.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"contextMenus"
],
"browser_action": {
"default_title": "__MSG_browserAction__"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"js": [
"content_script.js"
]
}
],
"web_accessible_resources": [
"touch_start_event_blocking.js"
],
"background": {
"scripts": [
"background.js"
]
}
}