-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
41 lines (40 loc) · 1.21 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
{
"name": "Quick Find for Google Chrome™",
"short_name": "Quick Find",
"version": "0.0.14",
"manifest_version": 3,
"description": "Port of Firefox Quick Find features + awesome new ones. Search results in one location. Navigate to links in just a few keystrokes.",
"icons": { "16": "images/icons/icon16.png",
"48": "images/icons/icon48.png",
"128": "images/icons/icon128.png" },
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"content_scripts": [ {
"js": ["js/lib/jquery-2.1.1.min.js","js/utility.js","js/text-search.js" ],
"css": ["css/styles.css"],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*" ]
} ],
"offline_enabled": true,
"web_accessible_resources": [{
"resources": ["fonts/*", "images/sprites*"],
"matches": ["*://*/*"]
}],
"content_security_policy": {
"extension_pages": "default-src 'self'"
},
"options_page": "options.html",
"commands": {
"quick-find-search-all": {
"description": "Search all text",
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
}
},
"quick-find-search-links": {
"description": "Search all links"
}
}
}