Sortly (a Feedly extension)

Sortly (a Feedly extension)

The ultimate feedly experience: sort by popularity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.1",
  "name": "Sortly (a Feedly extension)",
  "short_name": "Sortly",
  "description": "The ultimate feedly experience: sort by popularity",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "content/app128.png",
    "default_popup": "src/options.html"
  },
  "content_scripts": [
    {
      "js": [
        "src/jquery.js",
        "src/main.js"
      ],
      "matches": [
        "http://*.feedly.com/*",
        "https://*.feedly.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "src/options.html",
  "icons": {
    "16": "content/app16.png",
    "48": "content/app48.png",
    "128": "content/app128.png"
  },
  "permissions": [
    "storage",
    "http://*.feedly.com/*",
    "https://*.feedly.com/*"
  ],
  "web_accessible_resources": [
    "content/*.png"
  ]
}