-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 733 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 733 Bytes
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
{
"manifest_version": 2,
"name": "stackcopy",
"version": "2.0",
"description": "Copy code snippets from any StackExchange site with ease.",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"96": "icons/96.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": [
"*://*.stackexchange.com/*",
"*://askubuntu.com/*",
"*://mathoverflow.net/*",
"*://serverfault.com/*",
"*://stackapps.com/*",
"*://stackexchange.com/*",
"*://stackoverflow.com/*",
"*://superuser.com/*"
],
"js": [
"main.js"
],
"css": [
"main.css"
]
}
],
"permissions": [
"clipboardWrite"
]
}