-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
55 lines (50 loc) · 1.35 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
{
"manifest_version": 2,
"name": "Advanced Find",
"description": "A more advanced find on page tool",
"version": "1.2",
"offline_enabled": true,
"author": "[email protected] | contributors: [ [email protected] ]",
"permissions": [
"activeTab"
],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["js/content.js"],
"css": ["css/external.css"]
}],
"icons" : {
"256": "resources/advanced-find.png"
},
"browser_action": {
"default-title": "Advanced Find",
"default_popup": "html/search-box.html",
"default_icon": "resources/advanced-find.png"
},
"commands": {
"previous": {
"suggested_key": {
"default": "Ctrl+Left"
},
"description": "Go to previous match"
},
"next": {
"suggested_key": {
"default": "Ctrl+Right"
},
"description": "Go to next match"
},
"clear": {
"suggested_key": {
"default": "Ctrl+Delete"
},
"description": "Clear search results"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
}
}
}
}