Herald Syndication Snoop

Herald Syndication Snoop

Never get baited again - clearly see where an article really came from

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Herald Syndication Snoop",
  "short_name": "Syndi-Snoop",
  "version": "0.16.2",
  "description": "Never get baited again - clearly see where an article really came from",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.nzherald.co.nz/"
      ],
      "js": [
        "headlines.js"
      ],
      "run-at": "document_start"
    },
    {
      "matches": [
        "*://www.nzherald.co.nz/*/*/*"
      ],
      "js": [
        "article-page.js"
      ],
      "run-at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.nzherald.co.nz/*"
  ],
  "options_ui": {
    "page": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon_48.png"
      ],
      "matches": [
        "*://*.nzherald.co.nz/*"
      ],
      "extension_ids": [],
      "use_dynamic_url": false
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}