-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 977 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "Anchor Selector",
"version": "0.10.3",
"description": "Select link anchor element",
"homepage_url": "https://github.com/bgpat/anchor-selector",
"browser_specific_settings": {
"gecko": {
"id": "{22a2fd71-5ac1-46c9-88e8-fe65a41bad62}",
"strict_min_version": "78.0"
}
},
"icons": {
"256": "icons/anchor-selector.png"
},
"background": {
"scripts": [
"dist/background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"dist/content_script.js"
],
"css": [
"stylesheets/overlay.css"
]
}
],
"page_action": {
"default_icon": {
"48": "icons/anchor-selector.png"
},
"default_title": "Anchor Selector"
},
"web_accessible_resources": [
"icons/anchor-selector.svg"
],
"options_ui": {
"page": "options.html"
},
"permissions": [
"clipboardWrite",
"storage"
]
}