Aftenposten Liberation

Aftenposten Liberation

Les ubegrenset antall artikler på Aftenposten.no gratis. Fiks iOS, iPhone og iPad-skrivemåte.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Aftenposten Liberation",
  "description": "Les ubegrenset antall artikler på Aftenposten.no gratis. Fiks iOS, iPhone og iPad-skrivemåte.",
  "version": "2.0",
  "permissions": [
    "tabs",
    "cookies",
    "http://*.aftenposten.no/",
    "https://*.aftenposten.no/",
    "http://aftenposten.no/",
    "https://aftenposten.no/"
  ],
  "background": {
    "scripts": [
      "cookie.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.aftenposten.no/*",
        "https://*.aftenposten.no/*",
        "http://aftenposten.no/*",
        "https://aftenposten.no/*"
      ],
      "js": [
        "iReplace.js"
      ],
      "run_at": "document_end"
    }
  ]
}