-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathmanifest.prod.json
106 lines (106 loc) · 2.93 KB
/
manifest.prod.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "__MSG_extensionName__"
, "author": "BlackGlory"
, "version": "3.1.6"
, "manifest_version": 3
, "minimum_chrome_version": "109"
, "default_locale": "en"
, "description": "__MSG_extensionDescription__"
, "icons": {
"16": "assets/images/icon-16.png"
, "32": "assets/images/icon-32.png"
, "48": "assets/images/icon-48.png"
, "64": "assets/images/icon-64.png"
, "128": "assets/images/icon-128.png"
}
, "commands": {
"commandTabTitle": {
"description": "__MSG_commandTabTitle__"
}
, "commandTabLinkAsPlainText": {
"description": "__MSG_commandTabLinkAsPlainText__"
}
, "commandTabLinkAsRichText": {
"description": "__MSG_commandTabLinkAsRichText__"
}
, "commandTabLinkAsHTML": {
"description": "__MSG_commandTabLinkAsHTML__"
}
, "commandTabLinkAsMarkdown": {
"description": "__MSG_commandTabLinkAsMarkdown__"
}
, "commandTabLinkAsOrgMode": {
"description": "__MSG_commandTabLinkAsOrgMode__"
}
, "commandTabLinkAsAsciiDoc": {
"description": "__MSG_commandTabLinkAsAsciiDoc__"
}
, "commandTabLinkAsBBCode": {
"description": "__MSG_commandTabLinkAsBBCode__"
}
, "commandSelectionAsPlainText": {
"description": "__MSG_commandSelectionAsPlainText__"
}
, "commandSelectionAsConcatenatedPlainText": {
"description": "__MSG_commandSelectionAsConcatenatedPlainText__"
}
, "commandSelectionAsJSON": {
"description": "__MSG_commandSelectionAsJSON__"
}
, "commandSelectionAsMarkdown": {
"description": "__MSG_commandSelectionAsMarkdown__"
}
, "commandSelectionAsHTML": {
"description": "__MSG_commandSelectionAsHTML__"
}
, "commandSelectionAsHTMLWithoutAttributes": {
"description": "__MSG_commandSelectionAsHTMLWithoutAttributes__"
}
, "commandSelectionAsCleanHTML": {
"description": "__MSG_commandSelectionAsCleanHTML__"
}
, "commandSelectionAsBBCode": {
"description": "__MSG_commandSelectionAsBBCode__"
}
}
, "content_scripts": [{
"matches": ["<all_urls>"]
, "match_about_blank": true
, "all_frames": true
, "js": ["copycat.js"]
, "run_at": "document_start"
}]
, "background": {
"service_worker": "background.js"
}
, "action": {
"default_title": "__MSG_extensionActionTitle__"
, "default_popup": "options.html"
, "default_icon": {
"16": "assets/images/icon-16.png"
, "32": "assets/images/icon-32.png"
, "48": "assets/images/icon-48.png"
, "64": "assets/images/icon-64.png"
, "128": "assets/images/icon-128.png"
}
}
, "options_ui": {
"page": "options.html"
}
, "permissions": [
"contextMenus"
, "scripting"
, "clipboardWrite"
, "offscreen"
, "storage"
]
, "host_permissions": [
"<all_urls>"
]
, "web_accessible_resources": [
{
"resources": [ "*.js.map"]
, "matches": ["<all_urls>"]
}
]
}