soundtrack.io

music for all.

What is soundtrack.io?

soundtrack.io is a Chrome extension developed by http://soundtrack.io, and its main feature is "music for all.".

Extension Screenshots

screenshot
screenshot

Download soundtrack.io Extension CRX File

Download soundtrack.io extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Official soundtrack.io Chrome extension.  Listen to music in your browser, without interruption.  See: https://soundtrack.io

Features:
- Adds "Queue" buttons to Soundcloud, YouTube, and now Bandcamp (as of September, 2016!) allowing you to queue tracks into a soundtrack room.
- Disables VP8, VP9, and WebM codecs on YouTube, enhancing performance.

Changelog: https://github.com/martindale/soundtrack.io-chrome/releases

This is an OPEN SOURCE plugin!  You can add features!  The source code is available on GitHub: https://github.com/martindale/soundtrack.io-chrome

Want to contribute?  View the wishlist: https://github.com/martindale/soundtrack.io-chrome/issues                    

Extension Basic Information

Name soundtrack.io soundtrack.io
ID plpfboikjdjiigdfknoohjopodfkenbn
Official URL https://chrome.google.com/webstore/detail/soundtrackio/plpfboikjdjiigdfknoohjopodfkenbn
Description music for all.
File Size 66.44 KB
Installation Count 215
Current Version 0.3.2
Last Updated 2016-09-26
Publish Date 2016-09-26
Rating 3.00/5 Total 6 Ratings
Developer http://soundtrack.io
Payment Type free
Extension Website https://soundtrack.io
Help Page URL https://github.com/martindale/soundtrack.io-chrome/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "soundtrack.io",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "music for all.",
    "homepage_url": "https:\/\/soundtrack.io",
    "icons": {
        "16": "img\/soundtrack.png",
        "48": "img\/soundtrack.png",
        "128": "img\/soundtrack.png"
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "https:\/\/soundcloud.com\/*",
                "http:\/\/soundcloud.com\/*",
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.bandcamp.com\/*",
                "http:\/\/*.bandcamp.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "script.js",
        "inject.js",
        "jquery-2.1.1.min.js",
        "style.css"
    ]
}