Sidebarr - chatgpt, bookmarks, apps and more

Sidebarr - chatgpt, bookmarks, apps and more

🚀 Now with ChatGPT. Organize bookmarks, favorite websites, apps, ChatGPT and access them in sidebar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_desc__",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "bookmarks",
    "unlimitedStorage",
    "favicon",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequest",
    "tabs",
    "alarms"
  ],
  "host_permissions": [
    "*://*.google.com/",
    "*://*.yahoo.com/",
    "*://*.bing.com/",
    "*://duckduckgo.com/"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "icons": {
    "34": "icon-34.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*",
        "*.svg",
        "*.png",
        "*.css",
        "*.otf",
        "chrome://favicon/*",
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}