soundtrack.io
music for all.
Wat is soundtrack.io?
soundtrack.io is een Chrome-extensie ontwikkeld door http://soundtrack.io, en de belangrijkste functie is "music for all.".
Extensie Screenshots
Download het CRX-bestand van de extensie soundtrack.io
Download soundtrack.io-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | plpfboikjdjiigdfknoohjopodfkenbn |
Officiële URL | https://chrome.google.com/webstore/detail/soundtrackio/plpfboikjdjiigdfknoohjopodfkenbn |
Beschrijving | music for all. |
Bestandsgrootte | 66.44 KB |
Aantal Installaties | 215 |
Huidige Versie | 0.3.2 |
Laatst Bijgewerkt | 2016-09-26 |
Publicatiedatum | 2016-09-26 |
Beoordeling | 3.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | http://soundtrack.io |
Betalingswijze | free |
Extensiewebsite | https://soundtrack.io |
Help Pagina-URL | https://github.com/martindale/soundtrack.io-chrome/issues |
Ondersteunde Talen | 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" ] } |