Bookmark, Tag & Screenshot Manager | Page Org

Bookmark, Tag & Screenshot Manager | Page Org

Organize bookmarks & browsing history, capture and edit screenshots, Syncing across devices, collaborate with colleagues

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_appDescription__",
  "version": "1.0.7",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/icon.png"
  },
  "icons": {
    "128": "img/icon.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "content.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "img/icon.png",
        "onnx/bidaf.onnx",
        "sidebar.html",
        "sidebar.bundle.js",
        "dialog.html",
        "dialog.bundle.js",
        "options.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "bookmarks",
    "contextMenus",
    "history",
    "identity",
    "storage",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "tabs",
    "identity.email"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}