RSS Reader

RSS Reader

Makes RSS easy to read.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RSS Reader",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "Makes RSS easy to read.",
  "minimum_chrome_version": "21",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    "css/content.css"
  ],
  "background": {
    "scripts": [
      "thirdParty/jquery-3.4.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab"
  ]
}