Power Hour

Power Hour

Allows you to turn a Spotify playlist into a power hour.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Power Hour",
  "description": "Allows you to turn a Spotify playlist into a power hour.",
  "version": "1.0",
  "icons": {
    "128": "hourglass_128.png",
    "512": "hourglass_512.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery.js",
        "app.js"
      ],
      "matches": [
        "https://open.spotify.com/*",
        "http://open.spotify.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "http://*.spotify.com/*",
    "https://*.spotify.com/*"
  ],
  "web_accessible_resources": [
    "horse.mp3",
    "wasted.ogg",
    "shots.ogg",
    "shots2.ogg",
    "bell.png",
    "bell_off.png",
    "bell_off2.png",
    "hourglass_128.png",
    "hourglass_512.png"
  ]
}