Hamster Dance Fix

Hamster Dance Fix

Fix the Hamster Dance to loop the audio

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hamster Dance Fix",
  "version": "2.3.2",
  "manifest_version": 2,
  "description": "Fix the Hamster Dance to loop the audio",
  "homepage_url": "http://www.hamsterdance.org",
  "icons": {
    "16": "icons/[email protected]",
    "48": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "default_locale": "en",
  "permissions": [
    "http://www.hamsterdance.org/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.hamsterdance.org/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}