MuteMachine

MuteMachine

Automatically skip songs on the HypeMachine

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MuteMachine",
  "short_name": "mutem",
  "description": "Automatically skip songs on the HypeMachine",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://hypem.com/*",
        "http://hypem.com/*"
      ],
      "js": [
        "jquery.js",
        "mutemachine.js"
      ],
      "css": [
        "mutemachine.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  }
}