soundtrack.io
music for all.
soundtrack.ioとは何ですか?
soundtrack.ioはhttp://soundtrack.ioによって開発されたChromeの拡張機能で、その主な機能は「music for all.」です。
拡張機能のスクリーンショット
soundtrack.io拡張機能のCRXファイルをダウンロード
soundtrack.io拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
ID | plpfboikjdjiigdfknoohjopodfkenbn |
公式URL | https://chrome.google.com/webstore/detail/soundtrackio/plpfboikjdjiigdfknoohjopodfkenbn |
説明 | music for all. |
ファイルサイズ | 66.44 KB |
インストール数 | 215 |
現在のバージョン | 0.3.2 |
最終更新日 | 2016-09-26 |
公開日 | 2016-09-26 |
評価 | 3.00/5 合計 6 レビュー |
開発者 | http://soundtrack.io |
支払い方法 | free |
拡張機能のウェブサイト | https://soundtrack.io |
ヘルプページのURL | https://github.com/martindale/soundtrack.io-chrome/issues |
対応言語 | 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" ] } |