SoundCloud Likes to Playlist

Extension to add all your SoundCloud Likes to a Playlist in seconds.

SoundCloud Likes to Playlistคืออะไร?

SoundCloud Likes to Playlist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://wb.gy และคุณลักษณะหลักของมันคือ "Extension to add all your SoundCloud Likes to a Playlist in seconds."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SoundCloud Likes to Playlist

ดาวน์โหลดไฟล์ส่วนขยาย 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 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\/*"
    ]
}