soundtrack.io
music for all.
soundtrack.io là gì?
soundtrack.io là một tiện ích mở rộng Chrome được phát triển bởi http://soundtrack.io, và tính năng chính của nó là "music for all.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng soundtrack.io
Tải xuống các tệp mở rộng soundtrack.io dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | plpfboikjdjiigdfknoohjopodfkenbn |
URL Chính Thức | https://chrome.google.com/webstore/detail/soundtrackio/plpfboikjdjiigdfknoohjopodfkenbn |
Mô tả | music for all. |
Kích Thước Tệp | 66.44 KB |
Số Lần Cài Đặt | 215 |
Phiên Bản Hiện Tại | 0.3.2 |
Cập Nhật Lần Cuối | 2016-09-26 |
Ngày Phát Hành | 2016-09-26 |
Đánh Giá | 3.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | http://soundtrack.io |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://soundtrack.io |
URL Trang Trợ Giúp | https://github.com/martindale/soundtrack.io-chrome/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |