manifest.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
{ "manifest_version": 2, "name": "Form Autocomplete", "version": "1.0", "description": "Detects and logs all input elements on a webpage", "permissions": [ "activeTab", "tabs", "<all_urls>", "http://localhost:8080/*", "https://generativelanguage.googleapis.com/*" ], "icons": { "96": "dist/logo.svg", "48": "dist/logo.svg" }, "browser_action": { "default_icon": "dist/logo.svg", "default_popup": "dist/popup.html", "default_title": "Form Autocomplete" }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["dist/content.js"] } ] } |