Torrent Scanner

Torrent Scanner

Search the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Adaware",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "128": "img/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/browsericons/icon16.png",
      "32": "img/browsericons/icon32.png"
    },
    "default_title": "Torrent Scanner"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/lib/socket.io.min.js",
        "/js/systemUtil.js",
        "/js/functionUtil.js",
        "/js/contentscript.js",
        "/js/scraperscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/css/custom.css"
      ],
      "js": [
        "/js/popup.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "incognito": "split",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "Torrent Scanner",
  "short_name": "Torrent Scanner",
  "permissions": [
    "storage",
    "tabs"
  ],
  "optional_permissions": [
    "nativeMessaging"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "1.4.0"
}