-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (40 loc) · 1.02 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
{
"manifest_version": 2,
"name": "Site Tags",
"description": "Lets user tag websites. Links pointing to it will have an icon appended.",
"version": "1.0",
"background": {
"scripts": ["./aux_scripts/aux_functions.js", "./background_scripts/context_menu.js", "./background_scripts/action_button.js"]
},
"permissions": [
"storage",
"tabs",
"activeTab",
"contextMenus",
"<all_urls>"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./aux_scripts/aux_functions.js", "./content_scripts/decorateLinks.js"],
"run_at":"document_end",
"css": ["./css/icon_style.css"]
}
],
"web_accessible_resources": [
"/icons/*.png",
"./css/icon_style.css"
],
"options_ui": {
"page": "./options_page/options.html",
"browser_style": true
},
"browser_action": {
"default_title": "Site Tags: open options page"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
}
}