-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
50 lines (50 loc) · 1.05 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
48
49
50
{
"description": "Asciify ALL the websites! (Firefox port)",
"manifest_version": 2,
"name": "ASCIImoji",
"icons": {
"128": "images/icon-128.png",
"16": "images/icon-16.png",
"48": "images/icon-48.png"
},
"background": {
"scripts": [
"js/jquery-3.4.1.min.js",
"js/asciimoji.js",
"js/background.js"
]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"js/jquery-3.4.1.min.js",
"js/asciimoji.js",
"js/asciimoji.jquery.js",
"js/script.js"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "70.0"
}
},
"options_ui": {
"page": "options/index.html",
"browser_style": true,
"open_in_tab":true
},
"permissions": [
"storage",
"tabs",
"http://*/*",
"https://*/*",
"contextMenus"
],
"version": "ff2.0.0"
}