Nyaa Preview

Nyaa Preview

Preview thumbnail images for nyaa.si website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nyaa Preview",
  "description": "Preview thumbnail images for nyaa.si website",
  "version": "1.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "cookies"
  ],
  "host_permissions": [
    "https://nyaapreview.com/*"
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "/images/get_started16.png",
      "32": "/images/get_started32.png",
      "48": "/images/get_started48.png",
      "128": "/images/get_started128.png"
    }
  },
  "icons": {
    "16": "/images/get_started16.png",
    "32": "/images/get_started32.png",
    "48": "/images/get_started48.png",
    "128": "/images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://sukebei.nyaa.si/*"
      ],
      "css": [
        "./style/content.css"
      ],
      "js": [
        "./script/constants.js",
        "./script/content-Sukebei.js"
      ]
    },
    {
      "matches": [
        "https://nyaa.si/*"
      ],
      "css": [
        "./style/content.css"
      ],
      "js": [
        "./script/constants.js",
        "./script/content-Nyaa.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/iframeBlock.html",
        "script/iframe.js",
        "html/popup.html"
      ],
      "matches": [
        "https://sukebei.nyaa.si/*",
        "https://nyaa.si/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://sukebei.nyaa.si/*"
    ]
  }
}