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": "LLM Text Summarizer", "description": "Summarize text with a click of a button", "version": "1.0.0", "action": { "default_icon": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "js\/backgroundPage.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "js\/contentScript.js" ], "run_at": "document_idle" } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "storage", "contextMenus" ] }