SoundCloud Player

SoundCloud Popup Player 🔥

SoundCloud Player là gì?

SoundCloud Player là một tiện ích mở rộng Chrome được phát triển bởi https://akiba.cloud, và tính năng chính của nó là "SoundCloud Popup Player 🔥".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng SoundCloud Player 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

                        Control your audio with ease using this extension. Reduce tab clicking by using the convenient pop-up window feature.

If you experience any issues, try reloading your SoundCloud tab or restarting your browser.

If the problem persists, please contact us using the links provided below.

Privacy Policy: https://akiba.cloud/soundcloud-player/privacy-policy

Homepage: https://akiba.cloud/soundcloud-player/
Github: https://github.com/S4WA/soundcloud-player
Feedback: https://github.com/S4WA/soundcloud-player/wiki/Feedback-Form
How to Use: https://github.com/S4WA/soundcloud-player/wiki/How-to-Use                    

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

Tên SoundCloud Player SoundCloud Player
ID oackhlcggjandamnkggpfhfjbnecefej
URL Chính Thức https://chromewebstore.google.com/detail/soundcloud-player/oackhlcggjandamnkggpfhfjbnecefej
Mô tả SoundCloud Popup Player 🔥
Kích Thước Tệp 82.43 KB
Số Lần Cài Đặt 14,503
Phiên Bản Hiện Tại 1.3.9
Cập Nhật Lần Cuối 2023-12-17
Ngày Phát Hành 2020-04-30
Đánh Giá 4.72/5 Tổng số 25 Đánh Giá
Nhà Phát Triển https://akiba.cloud
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/S4WA/soundcloud-player/wiki/How-to-Use
URL Trang Trợ Giúp https://github.com/S4WA/soundcloud-player/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SoundCloud Player",
    "short_name": "SC Player",
    "description": "SoundCloud Popup Player \ud83d\udd25",
    "version": "1.3.9",
    "homepage_url": "https:\/\/akiba.cloud\/soundcloud-player\/",
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background\/bg.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "browser-polyfill.min.js",
                "jquery-3.6.4.min.js",
                "contents\/contents.js",
                "contents\/utils.js"
            ],
            "matches": [
                "*:\/\/soundcloud.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "commands": {
        "open": {
            "description": "Open the tab."
        },
        "toggle": {
            "description": "Toggle the audio."
        },
        "prev": {
            "description": "Play previous track"
        },
        "next": {
            "description": "Play next track"
        },
        "fav": {
            "description": "Add\/Remove current track to the favorite list."
        },
        "repeat": {
            "description": "Shift change the repeat mode. (order: SINGLE, ALL, NONE)"
        },
        "shuffle": {
            "description": "Toggle shuffle mode."
        },
        "mute": {
            "description": "Toggle mute."
        },
        "up": {
            "description": "Audio volume up"
        },
        "down": {
            "description": "Audio volume down"
        },
        "seekb": {
            "description": "Seek a bit backward."
        },
        "seekf": {
            "description": "Seek a bit forward."
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Open the popup"
        }
    }
}