SoundCloud Likes to Playlist

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

SoundCloud Likes to Playlist là gì?

SoundCloud Likes to Playlist là một tiện ích mở rộng Chrome được phát triển bởi https://wb.gy, và tính năng chính của nó là "Extension to add all your SoundCloud Likes to a Playlist in seconds.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SoundCloud Likes to Playlist

Tải xuống các tệp mở rộng SoundCloud Likes to Playlist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SoundCloud Likes to Playlist SoundCloud Likes to Playlist
ID nkndddcbofchmjogahmikkapkaoglkoh
URL Chính Thức https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh
Mô tả Extension to add all your SoundCloud Likes to a Playlist in seconds.
Kích Thước Tệp 564 KB
Số Lần Cài Đặt 3,021
Phiên Bản Hiện Tại 2.2.11
Cập Nhật Lần Cuối 2021-09-02
Ngày Phát Hành 2019-02-12
Đánh Giá 4.67/5 Tổng số 55 Đánh Giá
Nhà Phát Triển https://wb.gy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2
URL Trang Trợ Giúp https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2
URL Trang Chính Sách Bảo Mật https://joinsafqa.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}