RSS Reader Style

RSS Reader Style

Reduce the margin RSS Reader.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RSS Reader Style",
  "version": "1.6.1.3",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extensiondescription__",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://feedly.com/*",
        "https://feedly.com/*",
        "http://cloud.feedly.com/*",
        "https://cloud.feedly.com/*",
        "http://www.feedly.com/*",
        "https://www.feedly.com/*"
      ],
      "js": [
        "jquery.js",
        "script-feedly.js"
      ],
      "css": [
        "style-feedly.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "http://digg.com/reader",
        "http://digg.com/reader/*",
        "https://digg.com/reader",
        "https://digg.com/reader/*"
      ],
      "css": [
        "style-digg.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.google.com/reader/*",
        "http://www.google.com/reader/*",
        "https://www.google.co.jp/reader/*",
        "http://www.google.co.jp/reader/*"
      ],
      "css": [
        "style-google.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "http://my.yahoo.co.jp/*"
      ],
      "js": [
        "jquery.js",
        "script-myyahoo.js"
      ],
      "css": [
        "style-myyahoo.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "RSS Reader Style"
  },
  "options_page": "options.html"
}