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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

SoundCloud Likes to Playlist 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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\/*"
    ]
}