-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
41 lines (38 loc) · 1.2 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
{
"name": "Devman Review Snippet",
"version": "1.1",
"description": "Copy code and format for review on Devman site.",
"manifest_version": 3,
"permissions": [
"activeTab",
"clipboardWrite",
"clipboardRead",
"tabs"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_idle",
"all_frames": true,
"js": [
"text-tools.js",
"animations.js",
"sites/github.com.js",
"sites/repl.it.js",
"sites/noname.js",
"sites/bitbucket.org.js",
"script.js",
"enhancements-search/open-dialog.js"
]
}
],
"_comment": "service_worker.js подключается 2 раза из-за специфики манифестов в разных браузерах",
"_comment_url": "https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/background",
"background": {
"scripts": ["service_worker.js"],
"service_worker": "service_worker.js"
}
}