Inspect and view changes in Fast Fill - Fill the form only with one click source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_appname__",
"description": "Fill the forms with one click",
"version": "1.0.0",
"default_locale": "en",
"icons": {
"16": "icons/logo-1.png",
"32": "icons/logo-2.png",
"48": "icons/logo-3.png",
"128": "icons/logo-4.png"
},
"action": {
"default_title": "__MSG_action_tip__"
},
"background": {
"service_worker": "static/js/bg.js"
},
"permissions": [
"tabs",
"background",
"scripting"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"web_accessible_resources": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"resources": [
"static/js/content.js",
"static/css/content.css"
]
}
],
"commands": {
"open_drawer_command": {
"suggested_key": {
"windows": "Ctrl+M",
"mac": "Command+M",
"chromeos": "Ctrl+M",
"linux": "Ctrl+M"
},
"description": "__MSG_command_tip__"
}
}
}