Summarize any article using OpenAI's ChatGPT
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Summarize",
"description": "Summarize any article using OpenAI's ChatGPT",
"version": "0.0.7",
"manifest_version": 3,
"homepage_url": "https://github.com/clmnin/summarize.site",
"action": {},
"permissions": [
"scripting",
"activeTab",
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"16": "logo-16.png",
"32": "logo-32.png",
"48": "logo-48.png",
"128": "logo-128.png"
},
"host_permissions": [
"https://*.openai.com/"
],
"background": {
"service_worker": "background.bundle.js"
},
"web_accessible_resources": [
{
"resources": [
"styles.css"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}