Sort Best Posts for Reddit

Sort Best Posts for Reddit

Show the best (top-voted) posts of any subreddit on Reddit with one single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sort Best Posts for Reddit",
  "version": "1.2",
  "description": "Show the best (top-voted) posts of any subreddit on Reddit with one single click",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icons/icon16.png",
    "default_popup": "html/popup.html"
  },
  "options_page": "html/options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.reddit.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "images/foursquareColor.svg",
    "images/googleColor.svg",
    "images/yelpColor.svg",
    "images/splashbg.svg"
  ],
  "permissions": [
    "storage",
    "https://*.reddit.com/*"
  ]
}