YandexZen link fix

YandexZen link fix

This extension prevents you from Yandex and Yandex.Zen tracking the clicking of the links (removes the tracking "additions" in the links).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YandexZen link fix",
  "short_name": "YandexZen link fix",
  "description": "__MSG_description__",
  "author": "Urban Zen",
  "version": "1.0.0",
  "default_locale": "ru",
  "icons": {
    "128": "imgs/icon_128px.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/zen_yandex_ru.js"
      ],
      "matches": [
        "https://zen.yandex.ru/*",
        "https://yandex.ru/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://zen.yandex.ru/",
    "https://yandex.ru/"
  ]
}