Comments Timeline for SoundCloud®

Comments Timeline for SoundCloud®

Sorts SoundCloud comments by time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon19.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://soundcloud.com/*",
        "*://m.soundcloud.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Sorts SoundCloud comments by time",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "name": "Comments Timeline for SoundCloud®",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "*://*.soundcloud.com/*"
  ],
  "version": "1.4.4"
}