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",
"manifest_version": 3,
"short_name": "FormHistCtrl",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "3.0.3.0",
"author": "Stephan Mahieu",
"default_locale": "en",
"optional_permissions": [
"downloads"
],
"permissions": [
"contextMenus",
"activeTab",
"tabs",
"storage",
"alarms",
"clipboardWrite"
],
"host_permissions": [
"*:\/\/*\/*",
"file:\/\/\/*"
],
"icons": {
"16": "theme\/icons\/fhc-16.png",
"32": "theme\/icons\/fhc-32.png",
"48": "theme\/icons\/fhc-48.png",
"64": "theme\/icons\/fhc-64.png",
"128": "theme\/icons\/fhc-128.png"
},
"options_ui": {
"open_in_tab": true,
"page": "popup\/options\/options.html"
},
"background": {
"service_worker": "\/background\/chrome-service-worker.js"
},
"content_scripts": [
{
"js": [
"common\/browser-polyfill.min.js",
"common\/purify.js",
"content\/collectFormData.js",
"content\/showFormData.js",
"content\/auto-complete.js",
"content\/add-auto-complete.js"
],
"css": [
"content\/auto-complete.css"
],
"matches": [
"*:\/\/*\/*",
"file:\/\/\/*"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_icon": "theme\/icons\/fhc-128.png",
"default_title": "__MSG_extensionName__",
"default_popup": "popup\/tableview\/popup-small.html"
},
"commands": {
"open_fhc": {
"suggested_key": {
"default": "Alt+Shift+F"
},
"description": "Open the main FHC dialog"
},
"toggle_display_fields": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Show\/hide formfields on the current page"
},
"fill_recent": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Fill fields with most recent used entries"
},
"fill_often": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Fill fields with most often used entries"
}
}
}