Bookee - Instant Bookmark Manager

Bookee - Instant Bookmark Manager

Browse, search and share your Bookmarks with screenshots and thumbnails!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bookee - Instant Bookmark Manager",
  "short_name": "bookee",
  "description": "Browse, search and share your Bookmarks with screenshots and thumbnails!",
  "homepage_url": "https://onassar.github.io/extensions/bookee/",
  "version": "1.1.23",
  "author": "Oliver Nassar",
  "manifest_version": 3,
  "background": {
    "service_worker": "/js/runtime/background.js"
  },
  "commands": {
    "toggle-bookee-command": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+K",
        "default": "Ctrl+Shift+K",
        "linux": "Ctrl+Shift+K",
        "mac": "Command+Shift+K",
        "windows": "Ctrl+Shift+K"
      },
      "description": "Toggle Bookee"
    }
  },
  "action": {
    "default_title": "Search Bookmarks"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "notifications",
    "scripting",
    "storage",
    "tabs"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "/vendors/internal/DependencyLoader.js",
        "/vendors/external/extend/v0.0.0/extend.js",
        "/js/helpers/Frame.js",
        "/js/states/BookeeContent.js",
        "/js/runtime/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/logos/bookee/roles/prod/square-16x16.png",
    "48": "images/logos/bookee/roles/prod/square-48x48.png",
    "128": "images/logos/bookee/roles/prod/square-128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/app.html",
        "/css/*",
        "/data/*",
        "/fonts/*",
        "/images/*",
        "/templates/*",
        "/vendors/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {}
}