Arweave

Arweave

Arweave web archiver and wallet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Arweave",
  "description": "Arweave web archiver and wallet.",
  "version": "2.3.1",
  "options_page": "main.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Arweave",
    "default_icon": "assets/icons/icon-128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "app/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "app/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "downloads",
    "<all_urls>"
  ],
  "icons": {
    "128": "assets/icons/icon-128.png"
  }
}