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": "Email Address Autocomplete", "version": "2.0.0", "author": "[email protected]", "description": "Autocompletes email addresses in text fields", "icons": { "16": "assets\/img\/icon16.png", "24": "assets\/img\/icon24.png", "48": "assets\/img\/icon48.png", "64": "assets\/img\/icon64.png", "72": "assets\/img\/icon72.png", "96": "assets\/img\/icon96.png", "128": "assets\/img\/icon128.png" }, "permissions": [ "storage", "contextMenus" ], "action": { "default_popup": "html\/popup.html", "default_icon": { "16": "assets\/img\/icon16.png", "24": "assets\/img\/icon24.png", "48": "assets\/img\/icon48.png", "64": "assets\/img\/icon64.png", "72": "assets\/img\/icon72.png", "96": "assets\/img\/icon96.png", "128": "assets\/img\/icon128.png" } }, "options_ui": { "page": "html\/options.html", "open_in_tab": true }, "background": { "service_worker": "js\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "js\/content-css.js", "js\/content.js" ], "all_frames": true, "run_at": "document_end" } ] }