Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Quick Find for Google Chrome\u2122",
"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"
}
}
}