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": "There, I Saved You A Minute! - AI Web Summarizer", "version": "1.2", "description": "I am not sure why I was built, but here I am summarizing webpages for you lot!", "permissions": [ "activeTab", "scripting", "storage" ], "host_permissions": [ "https:\/\/api.openai.com\/*", "https:\/\/generativelanguage.googleapis.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/loading.gif", "content.css", "images\/duck1.png", "images\/duck2.png", "images\/duck3.png", "images\/duck4.png", "images\/duck5.png" ], "matches": [ "<all_urls>" ] } ] }