Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Q-Fill for Gmail",
"version": "1.1.0",
"description": "Automatically extracts verification codes from Gmail and fills them into web forms. Privacy-focused: all processing happens locally.",
"permissions": [
"identity",
"storage",
"activeTab",
"scripting",
"tabs",
"notifications"
],
"host_permissions": [
"https:\/\/www.googleapis.com\/*",
"https:\/\/gmail.googleapis.com\/*",
"https:\/\/accounts.google.com\/*",
"*:\/\/*\/*"
],
"oauth2": {
"client_id": "742920537082-c6ompt7qqk5c97tjut1fvbnlo546moeh.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/gmail.readonly"
]
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Q-Fill for Gmail"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"minimum_chrome_version": "88"
}