-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirefox-manifest.json
More file actions
41 lines (41 loc) · 911 Bytes
/
Copy pathfirefox-manifest.json
File metadata and controls
41 lines (41 loc) · 911 Bytes
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
{
"manifest_version": 3,
"name": "status.lol Bookmarklet",
"version": "2.1",
"description": "A simple bookmarklet extension for status.lol.",
"icons": {
"512": "icon.png"
},
"host_permissions": [
"https://home.omg.lol/*"
],
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"action": {
"default_icon": "icon.png",
"default_title": "status.lol Bookmarklet"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "statuslol@omg.lol"
}
},
"content_scripts": [
{
"matches": ["https://home.omg.lol/address/*/statuslog-bookmarklet*"],
"js": ["emoji.js"]
}
]
}