RR - Reddit, redesigned.™

RR - Reddit, redesigned.™

A chrome extension that redesigns Reddit into a cleaner and more beautiful interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RR - Reddit, redesigned.™",
  "short_name": "RR",
  "version": "1.3.1",
  "manifest_version": 2,
  "description": "A chrome extension that redesigns Reddit into a cleaner and more beautiful interface.",
  "icons": {
    "128": "images/icon_128.png"
  },
  "permissions": [
    "http://*.reddit.com/*",
    "https://*.reddit.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.reddit.com/",
        "http://*.reddit.com/new/*",
        "http://*.reddit.com/rising/*",
        "http://*.reddit.com/controversial/*",
        "http://*.reddit.com/top/*",
        "http://*.reddit.com/gilded/*",
        "http://*.reddit.com/wiki/*",
        "http://*.reddit.com/subreddits/*",
        "http://*.reddit.com/ads/*",
        "http://*.reddit.com/user/*",
        "http://*.reddit.com/r/*",
        "http://*.reddit.com/me/m/*",
        "http://*.reddit.com/dev/*",
        "http://*.reddit.com/message/*",
        "http://*.reddit.com/search*"
      ],
      "js": [
        "js/jquery-2.1.0.min.js",
        "js/utils.js",
        "js/topbar.js",
        "js/tabmenu.js",
        "js/reddit.js",
        "js/run.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "css/*",
    "images/*",
    "js/*"
  ]
}