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": "Summarize",
"description": "Summarize what you see. Articles, threads, YouTube, podcasts \u2014 anything.",
"version": "0.11.1",
"icons": {
"16": "assets\/icon-16.png",
"32": "assets\/icon-32.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"homepage_url": "https:\/\/summarize.sh",
"permissions": [
"tabs",
"activeTab",
"storage",
"sidePanel",
"webNavigation",
"scripting",
"windows",
"debugger"
],
"optional_permissions": [
"userScripts"
],
"host_permissions": [
"<all_urls>",
"http:\/\/127.0.0.1:8787\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Summarize",
"default_icon": {
"16": "assets\/icon-16.png",
"32": "assets\/icon-32.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"content-scripts\/automation.js",
"content-scripts\/extract.js",
"content-scripts\/hover.js"
]
}
]
}