Anti-clickbait

Anti-clickbait

Shows you the real title of an article before you click it on VG.no

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Anti-clickbait",
  "$schema": "https://json.schemastore.org/chrome-manifest.json",
  "version": "3.0.3",
  "description": "Shows you the real title of an article before you click it on VG.no",
  "manifest_version": 3,
  "background": {
    "service_worker": "src/background/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.vg.no/*"
      ],
      "js": [
        "src/content/index.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "options_ui": {
    "page": "pages/options.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{1d72d1ac-c3d9-4411-9322-f12e9284ede2}",
      "strict_min_version": "121.0"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/logo-16.png",
        "img/logo-32.png",
        "img/logo-48.png",
        "img/logo-64.png",
        "img/logo-128.png",
        "img/logo-256.png",
        "img/logo-512.png"
      ],
      "matches": []
    }
  ],
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-32.png",
    "48": "img/logo-48.png",
    "64": "img/logo-64.png",
    "128": "img/logo-128.png",
    "256": "img/logo-256.png",
    "512": "img/logo-512.png"
  },
  "host_permissions": [
    "https://*.vg.no/*"
  ],
  "optional_host_permissions": [
    "https://*.e24.no/*",
    "https://www.minmote.no/*",
    "https://www.tek.no/*",
    "https://www.godt.no/*",
    "https://www.landevei.no/*",
    "https://www.vektklubb.no/*"
  ]
}