SoundCloud Likes to Playlist
Extension to add all your SoundCloud Likes to a Playlist in seconds.
SoundCloud Likes to Playlistとは何ですか?
SoundCloud Likes to Playlistはhttps://wb.gyによって開発されたChromeの拡張機能で、その主な機能は「Extension to add all your SoundCloud Likes to a Playlist in seconds.」です。
拡張機能のスクリーンショット
SoundCloud Likes to Playlist拡張機能のCRXファイルをダウンロード
SoundCloud Likes to Playlist拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
I found that all my SoundCloud likes are public so I built a chrome extension to automate adding all my likes to a Private Playlist :D
拡張機能の基本情報
名前 | SoundCloud Likes to Playlist |
ID | nkndddcbofchmjogahmikkapkaoglkoh |
公式URL | https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh |
説明 | Extension to add all your SoundCloud Likes to a Playlist in seconds. |
ファイルサイズ | 564 KB |
インストール数 | 3,021 |
現在のバージョン | 2.2.11 |
最終更新日 | 2021-09-02 |
公開日 | 2019-02-12 |
評価 | 4.67/5 合計 55 レビュー |
開発者 | https://wb.gy |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
ヘルプページのURL | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
プライバシーポリシーページのURL | https://joinsafqa.com/privacy-policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "2.2.11", "short_name": "__MSG_appShortName__", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon.png", "128": "images\/logo-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": [], "omnibox": { "keyword": "soundcloud" }, "content_scripts": [ { "matches": [ "http:\/\/*.soundcloud.com\/*", "https:\/\/*.soundcloud.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "webRequest" ], "web_accessible_resources": [ "images\/*" ] } |