RSS Reader

RSS Reader

RSS reader Feedmee.ru

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RSS Reader",
  "short_name": "Feedmee",
  "description": "RSS reader Feedmee.ru",
  "version": "1.1",
  "default_locale": "ru",
  "background": {
    "scripts": [
      "lingua.js",
      "jquery-2.0.3.min.js",
      "base64.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "blacknwhite.png",
    "name": "RSS",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "management",
    "notifications"
  ],
  "content_scripts": [
    {
      "js": [
        "doc_start.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "subscribe.html",
    "loading-bar.gif",
    "16x16.png"
  ]
}