-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
57 lines (48 loc) · 1.16 KB
/
Copy pathmanifest.json
File metadata and controls
57 lines (48 loc) · 1.16 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"manifest_version": 2,
"name": "Language Switch",
"version": "2.12.0",
"description": "__MSG_extensionDescription__",
"browser_specific_settings": {
"gecko": {
"id": "{6e1ccc3a-6961-4b99-9455-e04cb868e7f9}",
"strict_min_version": "59.0"
}
},
"icons": {
"24": "icons/languageswitch.svg",
"32": "icons/languageswitch.svg",
"50": "icons/languageswitch.svg"
},
"background": {
"scripts": ["utils/iconupdater.js", "utils/storage.js", "background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["contentscript.js"],
"all_frames": true,
"run_at": "document_start"
}],
"browser_action": {
"browser_style": true,
"default_icon": "icons/languageswitch.svg",
"default_popup": "popup/choose_language.html",
"theme_icons": [{
"dark": "icons/languageswitch.svg",
"light": "icons/languageswitch-light.svg",
"size": 19
}]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": false
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"default_locale": "en"
}