Google Music Artist Skipper

Google Music Artist Skipper

Automatically skip artists on Google Music right inside of your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Music Artist Skipper",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Automatically skip artists on Google Music right inside of your browser.",
  "homepage_url": "http://jakebown.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "browser action demo"
  },
  "permissions": [
    "https://*/*",
    "http://google.com/*",
    "https://play.google.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/cookie/jquery.cookie.js",
        "src/bg/background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}