Basket

Basket

Save and share your favourite items all in one app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Basket",
  "version": "2.1.0",
  "default_locale": "en_GB",
  "icons": {
    "16": "assets/icons/production/favicon-16px.png",
    "32": "assets/icons/production/favicon-32px.png",
    "48": "assets/icons/production/favicon-48px.png",
    "128": "assets/icons/production/favicon-128px.png"
  },
  "description": "Save and share your favourite items all in one app.",
  "homepage_url": "https://www.trybasket.com",
  "short_name": "Basket",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "author": "Intent Technologies",
  "action": {
    "default_icon": {
      "16": "assets/icons/production/favicon-16px.png",
      "32": "assets/icons/production/favicon-32px.png",
      "48": "assets/icons/production/favicon-48px.png",
      "128": "assets/icons/production/favicon-128px.png"
    },
    "default_title": "Basket"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "browser-polyfill.js",
        "js/content-script.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "save-to-quick-saves": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      },
      "description": "Save item to Quick Saves"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.svg",
        "images/*.gif",
        "images/*.png",
        "assets/fonts/**/*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}