Feedly Companion: More keyboard shortcuts

Feedly Companion: More keyboard shortcuts

New Feedly keyboard shortcuts: Email Article (shift-e), Expose title/URL (shift-c), Expose URL (shift-u), Pinboard (shift-p)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Feedly Companion: More keyboard shortcuts",
  "version": "1.3",
  "manifest_version": 2,
  "description": "New Feedly keyboard shortcuts: Email Article (shift-e), Expose title/URL (shift-c), Expose URL (shift-u), Pinboard (shift-p)",
  "icons": {
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png"
  },
  "permissions": [
    "tabs",
    "http://*.feedly.com/*",
    "https://*.feedly.com/*"
  ],
  "background": {
    "scripts": [
      "init.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.feedly.com/*",
        "https://*.feedly.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery.js",
        "start.js"
      ]
    }
  ]
}