-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
61 lines (61 loc) · 1.27 KB
/
manifest.json
File metadata and controls
61 lines (61 loc) · 1.27 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
58
59
60
61
{
"manifest_version": 3,
"name": "BlogCat",
"description": "An add-on to make blogging a first-class citizen on Firefox.",
"version": "2026.5.3",
"browser_specific_settings": {
"gecko": {
"id": "blogcat@andregarzia.com",
"strict_min_version": "109.0"
}
},
"icons": {
"512": "icons/cat_computer512c.png"
},
"page_action": {
"default_icon": {
"512": "icons/cat_idea512c.png"
},
"default_popup": "pageAction/pageAction.html",
"default_title": "BlogCat"
},
"action": {
"default_icon": {
"512": "icons/cat_computer512c.png"
},
"default_popup": "browserAction/browserAction.html",
"default_title": "BlogCat"
},
"sidebar_action": {
"default_icon": {
"512": "icons/cat_pencil512c.png"
},
"default_title": "BlogCat Editor",
"default_panel": "editor.html",
"open_at_install": false
},
"options_ui": {
"page": "options/options.html"
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
],
"type": "module"
},
"permissions": [
"scripting",
"tabs",
"activeTab",
"clipboardWrite",
"storage",
"unlimitedStorage",
"contextMenus",
"history",
"downloads"
],
"host_permissions": [
"<all_urls>"
]
}