IPFS Companion

IPFS Companion

Harness the power of IPFS in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_manifest_extensionName__",
  "short_name": "__MSG_manifest_shortExtensionName__",
  "version": "3.1.0",
  "description": "__MSG_manifest_extensionDescription__",
  "homepage_url": "https://github.com/ipfs-shipyard/ipfs-companion",
  "author": "IPFS Community",
  "icons": {
    "19": "icons/png/ipfs-logo-on_19.png",
    "38": "icons/png/ipfs-logo-on_38.png",
    "128": "icons/png/ipfs-logo-on_128.png"
  },
  "action": {
    "default_icon": {
      "19": "icons/png/ipfs-logo-off_19.png",
      "38": "icons/png/ipfs-logo-off_38.png",
      "128": "icons/png/ipfs-logo-off_128.png"
    },
    "default_title": "__MSG_browserAction_title__",
    "default_popup": "dist/popup/browser-action/index.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "browser_style": false,
    "page": "dist/options/options.html"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/png/ipfs-logo-off_19.png",
        "icons/png/ipfs-logo-off_38.png",
        "icons/png/ipfs-logo-off_128.png",
        "icons/ipfs-logo-on.svg",
        "icons/ipfs-logo-off.svg",
        "dist/recovery/recovery.css",
        "dist/recovery/recovery.html",
        "dist/recovery/recovery.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self';"
  },
  "default_locale": "en",
  "minimum_chrome_version": "111",
  "background": {
    "service_worker": "dist/bundles/backgroundPage.bundle.js"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "idle",
    "notifications",
    "scripting",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation",
    "webRequest"
  ],
  "incognito": "not_allowed"
}