Meduza. Новости дня

Meduza. Новости дня

Самый быстрый способ узнать, что происходит в России и в мире прямо сейчас. Курсы валют. Подписка на обновления

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "__MSG_extAuthor__",
  "background": {
    "scripts": [
      "src/lib/utils.js",
      "src/lib/storage.js",
      "src/lib/api.js",
      "src/lib/meduza.js",
      "src/background/background-controller.js",
      "src/background/protector.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_popup": "/src/popup/index.html",
    "default_title": "__MSG_popupTitle__"
  },
  "default_locale": "ru",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "options_page": "src/options/index.html",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://meduza.io/*",
    "notifications",
    "storage",
    "tabs"
  ],
  "short_name": "__MSG_extShortName__",
  "version": "2.0.2",
  "web_accessible_resources": [
    "/img/icon512.png",
    "/src/popup/index.html",
    "/src/popup/popup-controller.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meduza.io/*"
      ],
      "js": [
        "src/background/content-script.js"
      ],
      "run_at": "document_start"
    }
  ]
}