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 擴展基本資訊
| 名稱 | |
| ID | nkndddcbofchmjogahmikkapkaoglkoh |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
} | |