YT New Comments

YT New Comments

Show youtube comments as 'Newest first' by default.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT New Comments",
  "version": "0.4",
  "manifest_version": 2,
  "description": "Show youtube comments as 'Newest first' by default.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.10.2.js",
        "2.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ]
}