News - Rss Reader

News - Rss Reader

Latest news

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "News - Rss Reader",
  "description": "Latest news",
  "version": "1.1.2",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "alarms",
    "tabs",
    "storage",
    "browsingData"
  ],
  "browser_action": {
    "default_icon": {
      "19": "skin/icons/icons19.png",
      "38": "skin/icons/icons38.png",
      "128": "skin/icons/icons128.png"
    },
    "default_popup": "popup.html",
    "default_title": "News - Rss Reader"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery-2.0.3.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "skin/icons/icons19.png",
    "48": "Skin/icons/icons48.png",
    "128": "skin/icons/icons128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-2.0.3.js",
      "js/backgroundPage.js"
    ]
  }
}