-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathmanifest.json
60 lines (60 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"manifest_version": 2,
"name": "CodeCopy",
"description": "Because copy to clipboard buttons should exist on every code snippet",
"homepage_url": "https://github.com/zenorocha/codecopy",
"version": "1.2.0",
"author": "Zeno Rocha",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "45.0"
}
},
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"content_scripts": [
{
"css": [
"styles/main.css"
],
"js": [
"scripts/main.js"
],
"matches": [
"https://developer.mozilla.org/*",
"https://medium.com/*",
"https://www.npmjs.com/*",
"https://*.gitbook.com/*",
"https://*.gitbooks.io/*",
"https://github.com/*/*",
"https://gist.github.com/*",
"https://developer.github.com/*",
"http://stackexchange.com/*",
"https://stackexchange.com/*",
"http://*.stackexchange.com/*",
"https://*.stackexchange.com/*",
"https://serverfault.com/*",
"https://superuser.com/*",
"https://askubuntu.com/*",
"http://stackoverflow.com/*",
"https://stackoverflow.com/*",
"http://*.stackoverflow.com/*",
"https://*.stackoverflow.com/*",
"https://tableless.com.br/*",
"https://laracasts.com/discuss/*",
"http://www.mkyong.com/*",
"https://www.mkyong.com/*",
"http://www.html5gamedevs.com/*",
"https://forum.imasters.com.br/*",
"https://docs.rs/*",
"https://www.digitalocean.com/community/*",
"https://nodejs.org/api/*",
"https://css-tricks.com/*"
]
}
]
}