Inspect and view changes in AI Article Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "AI Article Assistant",
"version": "0.3.0",
"description": "Summarize, bulletize, and elaborate any selected text with AI",
"minimum_chrome_version": "116",
"permissions": [
"activeTab",
"storage",
"contextMenus",
"sidePanel"
],
"host_permissions": [
"https://api.openai.com/"
],
"background": {
"service_worker": "service-worker.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"icons": {
"16": "assets/icon.png",
"32": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
}
}