Inspect and view changes in Webbu 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",
"name": "Webbu",
"description": "Webbu is your assistant for the browser",
"version": "1.01",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"host_permissions": [
"https://webbu.app/*",
"http://localhost:7002/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/webbu_16.png",
"32": "/images/webbu_32.png",
"48": "/images/webbu_48.png",
"128": "/images/webbu_128.png"
}
},
"icons": {
"16": "/images/webbu_16.png",
"32": "/images/webbu_32.png",
"48": "/images/webbu_48.png",
"128": "/images/webbu_128.png"
},
"commands": {
"skill1": {
"suggested_key": "Ctrl+Shift+1",
"description": "Skill #1"
},
"skill2": {
"suggested_key": "Ctrl+Shift+2",
"description": "Skill #2"
},
"skill3": {
"suggested_key": {
"default": "Ctrl+Shift+9"
},
"description": "Skill #9"
},
"_execute_action": {
"description": "Find Skills",
"suggested_key": {
"default": "Ctrl+Shift+0"
}
}
}
}