Songlink
Share music with Songlink.
Songlink là gì?
Songlink là một tiện ích mở rộng Chrome được phát triển bởi Antoine Guillou, và tính năng chính của nó là "Share music with Songlink.".
Ả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 Songlink
Tải xuống các tệp mở rộng Songlink 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
Share any song or album across any streaming platform. This extension adds a button to Chrome which will automatically open the Songlink for any song or album from Spotify, Apple Music, YouTube Music and many more. This extension uses the website and services of Songlink (https://song.link/).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Songlink |
ID | njnlopjiecpncchdmeeknhggbggolalc |
URL Chính Thức | https://chromewebstore.google.com/detail/songlink/njnlopjiecpncchdmeeknhggbggolalc |
Mô tả | Share music with Songlink. |
Kích Thước Tệp | 73.92 KB |
Số Lần Cài Đặt | 154 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2022-11-18 |
Ngày Phát Hành | 2019-10-07 |
Đánh Giá | 4.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Antoine Guillou |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://songlink.glitch.me |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Songlink", "version": "1.6", "description": "Share music with Songlink. ", "author": "@starfennec", "homepage_url": "https:\/\/songlink.glitch.me\/", "background": { "scripts": [ "script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.song.link\/*", "*:\/\/itunes.apple.com\/*", "*:\/\/music.apple.com\/*", "*:\/\/*.itun.es\/*", "*:\/\/*.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.youtu.be\/*", "*:\/\/*.deezer.com\/*", "*:\/\/*.tidal.com\/*", "*:\/\/*.napster.com\/*", "*:\/\/*.soundcloud.com\/*", "*:\/\/music.amazon.com\/*", "*:\/\/*.amazon.com\/*", "*:\/\/music.yandex.com\/*", "*:\/\/music.yandex.ru\/*", "*:\/\/*.spinrilla.com\/mixtapes\/*", "*:\/\/*.spinrilla.com\/songs\/*", "*:\/\/*.pandora.com\/*" ], "js": [ "messages.js" ] }, { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtu.be\/*" ], "js": [ "youtubeId.js" ] } ], "page_action": { "default_icon": { "16": "icons\/icon16.png", "20": "icons\/icon20.png", "40": "icons\/icon40.png", "44": "icons\/icon44.png", "48": "icons\/icon48.png", "50": "icons\/icon50.png", "128": "icons\/icon128.png", "150": "icons\/icon150.png", "176": "icons\/icon176.png" }, "default_title": "Songlink" }, "icons": { "16": "icons\/icon16.png", "20": "icons\/icon20.png", "40": "icons\/icon40.png", "44": "icons\/icon44.png", "48": "icons\/icon48.png", "50": "icons\/icon50.png", "128": "icons\/icon128.png", "150": "icons\/icon150.png", "176": "icons\/icon176.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "storage", "tabs" ] } |