BonsaiDash - Your productivity tab

BonsaiDash - Your productivity tab

Your productivity tab

Merlin
Additional files are visible only to premium users

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"
}