-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (42 loc) · 1.3 KB
/
manifest.json
File metadata and controls
49 lines (42 loc) · 1.3 KB
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
{
"manifest_version": 2,
"name": "Click Copy Link",
"version": "1.0.1",
"short_name": "ccl",
"homepage_url": "https://github.com/tsaost/copylink",
"description": "Hover over a link and copy using Ctrl-C/Cmd-C, or click on it with middle mouse button while holding the shift key. You can also copy multiple links using shfit + left mouse click.",
"applications": {
"gecko": { "id": "[email protected]" }
},
"background": {
"scripts": ["console.js", "background-copylink.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["<all_urls>"],
"run_at": "document_idle",
"js": ["console.js", "content-script-copylink.js"],
"css": ["copylink.css"]
}],
"icons": {
"48": "icons/link48.png",
"96": "icons/link96.png",
"128": "icons/link128.png",
"225": "icons/link225.png"
},
"browser_action": {
"default_icon": {
"48": "icons/link48.png",
"96": "icons/link96.png",
"128": "icons/link128.png",
"225": "icons/link225.png"
},
"default_title": "Click Copy Link"
},
"permissions": [ "tabs", "storage", "contextMenus",
"clipboardRead", "clipboardWrite"],
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}