Inscription Helper

Inscription Helper

Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Inscription Helper",
  "description": "Inscription Helper is designed to seamlessly load IPFS files directly from Bitcoin Ordinals inscriptions.",
  "version": "0.1.1",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "background": {
    "service_worker": "/src/js/background.js"
  },
  "action": {
    "default_popup": "/src/html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://ordinals.com/*"
      ],
      "js": [
        "/src/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/src/js/inject.js"
      ],
      "matches": [
        "https://ordinals.com/*"
      ]
    }
  ]
}