Scribe Extension

Scribe Extension

See NFT annotations on OpenSea

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scribe Extension",
  "description": "See NFT annotations on OpenSea",
  "version": "0.0.2",
  "manifest_version": 2,
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://opensea.io/assets/*"
      ]
    }
  ],
  "permissions": [
    "https://scribe-api.herokuapp.com/api/records/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}