Deezer Track Share
Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
Deezer Track Shareとは何ですか?
Deezer Track Shareはnatenhoによって開発されたChromeの拡張機能で、その主な機能は「Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms」です。
拡張機能のスクリーンショット
Deezer Track Share拡張機能のCRXファイルをダウンロード
Deezer Track Share拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Deezer Track Share |
ID | akgbpfoklebfkmbjghlibihpbbknclpp |
公式URL | https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp |
説明 | Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms |
ファイルサイズ | 18.79 KB |
インストール数 | 19 |
現在のバージョン | 0.0.0.2 |
最終更新日 | 2021-08-06 |
公開日 | 2021-04-18 |
開発者 | natenho |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |