unhearitagain

unhearitagain

Auto-skip for unhearit.com. Have a new song play automatically after the current one ends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "unhearitagain",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Auto-skip for unhearit.com. Have a new song play automatically after the current one ends.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "*://unhearit.com/*",
    "*://api.soundcloud.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://unhearit.com/*"
      ],
      "css": [],
      "js": [
        "jquery.js",
        "unhearitagain.js"
      ],
      "run_at": "document_start"
    }
  ]
}