Deezer Track Share
Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
Deezer Track Share là gì?
Deezer Track Share là một tiện ích mở rộng Chrome được phát triển bởi natenho, và tính năng chính của nó là "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms".
Ả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 Deezer Track Share
Tải xuống các tệp mở rộng Deezer Track Share 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
Includes the share button easily available from Deezer Web main page. Includes the SongLink share button, to open the current song in SongLink share page. Also includes buttons to open the current playing song in other platforms: - YouTube - Spotify
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Deezer Track Share |
ID | akgbpfoklebfkmbjghlibihpbbknclpp |
URL Chính Thức | https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp |
Mô tả | Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms |
Kích Thước Tệp | 18.79 KB |
Số Lần Cài Đặt | 19 |
Phiên Bản Hiện Tại | 0.0.0.2 |
Cập Nhật Lần Cuối | 2021-08-06 |
Ngày Phát Hành | 2021-04-18 |
Nhà Phát Triển | natenho |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deezer Track Share", "description": "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms", "version": "0.0.0.2", "browser_action": { "default_icon": "icon96.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.deezer.com\/*" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.deezer.com\/*", "https:\/\/api.song.link\/*" ], "web_accessible_resources": [ "sharebutton.html" ], "icons": { "16": "icon16.png", "48": "icon48.png", "96": "icon96.png" } } |