soundtrack.io

music for all.

Was ist soundtrack.io?

soundtrack.io ist eine Chrome-Erweiterung, die von http://soundtrack.io entwickelt wurde, und ihr Hauptmerkmal ist "music for all.".

Erweiterungsscreenshots

screenshot
screenshot

soundtrack.io-Erweiterungs-CRX-Datei herunterladen

Laden Sie soundtrack.io-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name soundtrack.io soundtrack.io
ID plpfboikjdjiigdfknoohjopodfkenbn
Offizielle URL https://chrome.google.com/webstore/detail/soundtrackio/plpfboikjdjiigdfknoohjopodfkenbn
Beschreibung music for all.
Dateigröße 66.44 KB
Installationsanzahl 215
Aktuelle Version 0.3.2
Letztes Update 2016-09-26
Veröffentlichungsdatum 2016-09-26
Bewertung 3.00/5 Insgesamt 6 Bewertungen
Entwickler http://soundtrack.io
Zahlungsart free
Erweiterungswebsite https://soundtrack.io
Hilfeseite URL https://github.com/martindale/soundtrack.io-chrome/issues
Unterstützte Sprachen 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"
    ]
}