Sidebarr - ChatGPT, bookmarks, apps and more

Sidebarr - ChatGPT, bookmarks, apps and more

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_desc__",
  "version": "2.0.5",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "bookmarks",
    "unlimitedStorage",
    "favicon",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "alarms",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_title__"
  },
  "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": [
    "_favicon/*",
    "*.svg",
    "*.png",
    "*.css",
    "*.otf",
    "chrome://favicon/*",
    "options.html"
  ]
}