NZ Hearld Premium Article Viewer

NZ Hearld Premium Article Viewer

Allows you to automatically view NZ Hearld premium articles without subscribing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NZ Hearld Premium Article Viewer",
  "description": "Allows you to automatically view NZ Hearld premium articles without subscribing",
  "version": "1.3",
  "manifest_version": 3,
  "icons": {
    "16": "./16.png",
    "32": "./32.png",
    "48": "./48.png",
    "128": "./128.png"
  },
  "options_page": "./options.html",
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://nzherald.co.nz/*",
        "*://www.nzherald.co.nz/*"
      ],
      "js": [
        "foreground.js"
      ],
      "css": [
        "custom.css"
      ]
    }
  ],
  "host_permissions": [
    "https://www.nzherald.co.nz/*"
  ]
}