Inspect and view changes in BonsaiDash - Your productivity tab 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
{
"manifest_version": 3,
"short_name": "BonsaiDash",
"name": "BonsaiDash - Your productivity tab",
"description": "Your productivity tab",
"version": "2.0.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{e1a10003-0d34-47a2-8494-531ccf9a2314}",
"strict_min_version": "42.0"
}
},
"permissions": [
"storage",
"activeTab",
"bookmarks",
"history",
"tabs",
"commands"
],
"chrome_url_overrides": {
"newtab": "newTab.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
}
],
"commands": {
"command-panel-toggle": {
"suggested_key": {
"windows": "Ctrl+K",
"mac": "Command+K",
"chromeos": "Ctrl+K",
"linux": "Ctrl+K"
},
"description": "Command Panel",
"global": true
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}