Page Org

Page Org

A tool to search, tag & manage page / url you have bookmarked or visited

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "A tool to search, tag & manage page / url you have bookmarked or visited",
  "version": "0.7.1",
  "manifest_version": 3,
  "name": "Page Org",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon.png",
        "background.jpg",
        "background_dark.jpg",
        "sidebar.html",
        "sidebar.bundle.js",
        "dialog.html",
        "dialog.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "bookmarks",
    "contextMenus",
    "history",
    "storage",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "tabs",
    "identity",
    "identity.email"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}