unbait

unbait

Using AI to replace clickbait headlines - one news site at a time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "unbait",
  "version": "1.1.0",
  "description": "Using AI to replace clickbait headlines - one news site at a time.",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*.eb.dk/*",
    "https://*.ekstrabladet.dk/*",
    "*://*.bt.dk/*",
    "*://*.tv2.dk/*",
    "https://us-central1-better-news-with-ai.cloudfunctions.net/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "lightbulb.svg",
        "content.js.map"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "off-16-bw.png",
      "48": "off-48-bw.png",
      "128": "off-128-bw.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.ekstrabladet.dk/*",
        "*://*.eb.dk/*",
        "*://*.bt.dk/*",
        "*://*.tv2.dk/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}