Dzen Sanity Check

Dzen Sanity Check

Reading Yandex.Dzen make sense now

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dzen Sanity Check",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Reading Yandex.Dzen make sense now",
  "background": {
    "scripts": [
      "modernizr.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://zen.yandex.ru/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon16.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "mycomment.html"
  ]
}