-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
56 lines (47 loc) · 1.23 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
{
"description": "Generate a link to a selection",
"manifest_version": 2,
"name": "Selection",
"version": "1.0",
"homepage_url": "https://github.com/Focus4you/Selection",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0a1"
}
},
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"<all_urls>",
"*://*/*"
],
"background": {
"scripts": ["scripts/background.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["scripts/content.js"]
}
],
"browser_action": {
"browser_style": true,
"default_icon": "buttons/show_images_show_videos.svg",
"default_title": "Link to Selection. New tabs.",
"default_popup": "popup.html?type=default"
},
"page_action": {
"browser_style": true,
"default_icon": "buttons/show_images_show_videos.svg",
"default_title": "Link to Selection. Current tab.",
"default_popup": "popup.html?type=tab",
"show_matches": ["*://*/*"]
},
"icons": {
"48": "buttons/show_images_show_videos.svg",
"96": "buttons/show_images_show_videos.svg"
},
"author": "Peter Kehl"
}