-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
80 lines (66 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"manifest_version": 2,
"name": "FoxReplace",
"version": "2.6.2",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "90.0"
}
},
"author": "Marc Ruiz Altisent",
"homepage_url": "https://github.com/Woundorf/foxreplace",
"description": "__MSG_extensionDescription__",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src 'self' 'unsafe-inline'",
"permissions": ["<all_urls>", "alarms", "menus", "downloads", "storage"],
"icons": {
"16": "icons/toolbaricon16.png",
"32": "icons/toolbaricon32.png",
"48": "icons/foxreplace48.png",
"96": "icons/foxreplace96.png"
},
"background": {
"scripts": ["lib/xregexp-all.js", "scripts/core.js", "scripts/periodicreplace.js", "scripts/storage.js", "scripts/subscription.js", "scripts/background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/xregexp-all.js", "scripts/core.js", "scripts/replace.js", "scripts/storage.js", "scripts/content.js"],
"all_frames": true,
"run_at": "document_end"
}
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": true,
"browser_style": true
},
"browser_action": {
"default_icon": {
"16": "icons/toolbaricon16.png",
"32": "icons/toolbaricon32.png",
"64": "icons/toolbaricon64.png"
},
"default_popup": "popup/toolbarbutton.html",
"browser_style": true
},
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+Shift+F9"
},
"description": "Show the replace bar"
},
"apply-substitution-list": {
"suggested_key": {
"default": "Ctrl+F9"
},
"description": "Apply the current substitution list"
}
},
"sidebar_action": {
"default_panel": "sidebar/sidebar.html",
"browser_style": true
}
}