-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
62 lines (55 loc) · 1.46 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
{
"manifest_version": 2,
"name": "FindR",
"version": "1.1.2",
"description": "A find and replace bar for Google Chrome",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_title": "FindR - click to search!",
"default_popup": "popup.html"
},
"background": {
"scripts":["background.js"],
"persistent":false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css":["injectcss.css"],
"js":["jquery-2.2.2.min.js", "c_script.js"]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+K",
"chromeos": "Ctrl+Shift+F",
"linux": "Ctrl+Shift+F"
}
},
"replace-all": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"mac": "Command+Shift+A"
},
"description": "Replace All, equivalent to pressing the Replace All button"
}
},
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"offline_enabled": true,
"permissions": [
"tabs", "http://*/*", "https://*/*", "storage"
]
}