Natural News

Natural News

Natural News

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Natural News",
  "description": "Natural News",
  "version": "1.21",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "notifications",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "icons": {
    "16": "images/logo_16.png",
    "19": "images/logo_19.png",
    "38": "images/logo_38.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "browser_action": {
    "default_title": "Click here to see the latest news from NaturalNews.com",
    "default_popup": "popup.html",
    "default_icon": "images/logo_38.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.8.2.min.js",
        "js/inject.js"
      ]
    }
  ],
  "manifest_version": 2,
  "short_name": "Natural News",
  "background": {
    "scripts": [
      "js/jquery-1.8.2.min.js",
      "js/background.js"
    ]
  }
}