Sound Cloud Sort

Sound Cloud Sort

Allows sorting of SoundClouds New & hot Charts list pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sound Cloud Sort",
  "description": "Allows sorting of SoundClouds New & hot Charts list pages",
  "version": "1.0.0",
  "icons": {
    "19": "images/icon19.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png"
  },
  "browser_action": {
    "default_icon": "images/icon96.png"
  },
  "permissions": [
    "activeTab",
    "*://*.soundcloud.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "css": [
        "chevron.css"
      ],
      "js": [
        "sortNew.js"
      ],
      "run_at": "document_end"
    }
  ]
}