-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 939 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
{
"name": "__MSG_ext_name__",
"short_name": "__MSG_ext_name__",
"version": "1.0.1",
"description": "__MSG_ext_desc__",
"optional_permissions": [
"tabs",
"activeTab"
],
"background": {
"scripts": [
"js/rank-listener.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "images/browseraction.png",
"default_title": "__MSG_browser_action__",
"default_popup" : "pages/popup.html"
},
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/script.js"
]
}
],
"default_locale": "en",
"offline_enabled": true,
"manifest_version": 2,
"homepage_url": "https://1ce.org"
}