-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.14 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": "Code Snip",
"version": "1.0",
"manifest_version": 2,
"description": "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.",
"background": {
"scripts": ["js/background.js"],
"persistent": false
},
"icons": {
"16" : "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Code Snip",
"default_popup": "overlay.html"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"css": ["css/stackOverflow.css"],
"js": ["js/stackOverflow.js", "js/contentscript.js", "js/copy-to-clipboard.js"],
"matches": ["https://stackoverflow.com/*"]
},
{
"css": ["css/github.css"],
"js": ["js/github.js", "js/contentscript.js", "js/copy-to-clipboard.js"],
"matches": ["https://github.com/*"]
},
{
"css": ["css/ubuntu.css"],
"js": ["js/ubuntu.js", "js/contentscript.js", "js/copy-to-clipboard.js"],
"matches": ["https://askubuntu.com/*"]
}
],
"content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}