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", "name": "New Tab With ChatGPT for Chrome\u2122", "description": "Get Instant Answers with ChatGPT on Your New Chrome Tab", "version": "0.0.4", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon32.png", "128": "icon128.png" }, "action": { "default_title": "New Tab", "default_icon": { "16": "icon16.png", "48": "icon32.png", "128": "icon128.png" } }, "permissions": [ "tabs", "geolocation", "activeTab", "topSites", "bookmarks", "history", "sessions", "gcm", "notifications" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ] } ], "chrome_url_overrides": { "newtab": "popup.html" } }