-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmanifest.json
34 lines (34 loc) · 952 Bytes
/
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
{
"browser_action": {
"default_icon": "img/umbrella_19.png",
"default_title": "Copy URLs to clipboard",
"default_popup": "popup.html"
},
"description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.",
"icons": {
"128": "img/umbrella_128.png"
},
"background": {
"scripts": ["vendor/jquery-1.7.2_min.js", "vendor/encoder.js", "background.js"]
},
"commands": {
"copy": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Copy"
},
"paste": {
"suggested_key": {
"default": "Alt+V"
},
"description": "Paste"
}
},
"name": "Copy All Urls",
"options_page": "options.html",
"permissions": ["tabs", "http://*/*", "https://*/*", "management", "clipboardRead", "clipboardWrite", "notifications"],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"version": "2.10",
"manifest_version": 2
}