Rewind Reddit

Rewind Reddit

Rewind Reddit - Slide back in time in reddit comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rewind Reddit",
  "manifest_version": 2,
  "version": "1.1.8",
  "description": "Rewind Reddit - Slide back in time in reddit comments",
  "content_scripts": [
    {
      "matches": [
        "http://reddit.com/*/*/comments/*",
        "https://reddit.com/*/*/comments/*",
        "http://*.reddit.com/*/*/comments/*",
        "https://*.reddit.com/*/*/comments/*"
      ],
      "js": [
        "jquery.js",
        "jqueryui/jquery-ui.min.js",
        "moment.js",
        "main.js"
      ],
      "css": [
        "jqueryui/jquery-ui.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "http://reddit.com/*/*/comments/*",
    "https://reddit.com/*/*/comments/*",
    "http://*.reddit.com/*/*/comments/*",
    "https://*.reddit.com/*/*/comments/*"
  ],
  "web_accessible_resources": [
    "jqueryui/images/*"
  ],
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}