Feedly はてブ

Feedly はてブ

はてなブックマークの情報を Feedly 上に表示します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Feedly はてブ",
  "version": "2.1.6",
  "manifest_version": 2,
  "description": "はてなブックマークの情報を Feedly 上に表示します。",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Feedly はてブのオプションを開く"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://feedly.com/i/collection/*",
        "https://feedly.com/i/subscription/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ]
}