musiclistr

musiclistr

Your central logger, jukebox, playlister for all music found online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "musiclistr",
  "short_name": "musiclistr",
  "version": "0.0.4",
  "homepage_url": "https://musiclistr.com/",
  "description": "Your central logger, jukebox, playlister for all music found online.",
  "manifest_version": 2,
  "background": {
    "page": "html/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery/dist/jquery.min.map",
        "js/api.js",
        "js/content_script.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*",
        "http://www.accuradio.com/*",
        "https://www.pandora.com/*",
        "http://www.pandora.com/*",
        "http://www.947.co.za/*",
        "http://www.deezer.com/*",
        "https://www.deezer.com/*",
        "http://8tracks.com/*",
        "https://8tracks.com/*",
        "https://*.spotify.com/*",
        "http://*.spotify.com/*",
        "https://soundcloud.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "script.js"
  ],
  "permissions": [
    "tabs",
    "background",
    "http://localhost:5000/",
    "https://musiclistr.com/"
  ],
  "browser_action": {
    "default_title": "musiclistr",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "128": "icons/headphones.png"
  },
  "commands": {
    "play": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      },
      "description": "Play song.",
      "global": true
    },
    "pause": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      },
      "description": "Pause song.",
      "global": true
    },
    "skip": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+P"
      },
      "description": "Skip song.",
      "global": true
    },
    "previous": {
      "suggested_key": {
        "default": "Ctrl+Shift+R",
        "mac": "Command+Shift+P"
      },
      "description": "Skip to previous.",
      "global": true
    },
    "thumb_up": {
      "description": "Thumbs up / like song.",
      "global": true
    },
    "thumb_down": {
      "description": "Thumbs down / dislike song.",
      "global": true
    }
  }
}