-
Notifications
You must be signed in to change notification settings - Fork 101
/
manifest.firefox.json
54 lines (54 loc) · 1.05 KB
/
manifest.firefox.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
51
52
53
54
{
"name": "Writely",
"version": "1.0.0",
"description": "A GPT Powered Extension helping your writing and reading",
"manifest_version": 3,
"author": "https://github.com/anc95",
"action": {
"default_title": "Writely",
"default_popup": "dist/popup/index.html"
},
"options_ui": {
"page": "dist/options/index.html",
"open_in_tab": true
},
"icons": {
"16": "dist/assets/icon.png",
"32": "dist/assets/icon.png",
"48": "dist/assets/icon.png",
"128": "dist/assets/icon.png"
},
"content_scripts": [
{
"js": [
"dist/content/index.js"
],
"css": [
"dist/content/animate.css"
],
"matches": [
"*://*/*"
],
"all_frames": true
}
],
"host_permissions": [
"https://*.miao-ya.com/"
],
"background": {
"scripts": [
"dist/background/index.js"
]
},
"permissions": [
"storage",
"clipboardRead",
"contextMenus",
"cookies"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}