Pau | Bookmark Manager

Pau | Bookmark Manager

Organize your bookmarks fast and easy with Pau bookmark manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pau | Bookmark Manager",
  "description": "Organize your bookmarks fast and easy with Pau bookmark manager",
  "version": "3.4.0",
  "manifest_version": 3,
  "permissions": [
    "bookmarks",
    "storage",
    "tabs",
    "identity",
    "identity.email"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_icon": "logo.png",
    "default_title": "Open Pau popup",
    "default_popup": "index.html?popup=true"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pauapp.com/collections*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentScriptCss.css"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  }
}