Inspect and view changes in Hal9 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": "Hal9",
"version": "1.0",
"description": "Chrome extension to intereact with Hal9.",
"icons": {
"16": "images/hal9-16.png",
"48": "images/hal9-48.png",
"128": "images/hal9-128.png"
},
"background": {
"service_worker": "worker.js"
},
"action": {
"default_title": "Open Hal9"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"permissions": [
"sidePanel",
"activeTab",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"hal9-styles.css",
"hal9-utils.js",
"hal9-main.js"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"hal9-action": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "Command+Shift+9"
},
"description": "Hal9"
}
}
}