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": "ReaderGPT: ChatGPT based Web Page Summariser", "description": "Generates summary of any readable web page using ChatGPT with just a single click.", "version": "0.101", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "action": [], "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "content_page_inject.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/chatgpt.svg", "images\/repeat.svg", "images\/copy.svg", "images\/trash.svg", "images\/cross.svg", "content.css", "content_page_inject.css", "options.html", "popup.html", "options.js" ], "matches": [ "<all_urls>" ] } ], "permissions": [ "activeTab", "scripting", "storage" ], "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } } } }