SoundCloud Player

SoundCloud Popup Player 🔥

SoundCloud Player क्या है?

SoundCloud Player https://akiba.cloud द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SoundCloud Popup Player 🔥"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SoundCloud Player एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम SoundCloud Player SoundCloud Player
ID oackhlcggjandamnkggpfhfjbnecefej
आधिकारिक URL https://chromewebstore.google.com/detail/soundcloud-player/oackhlcggjandamnkggpfhfjbnecefej
विवरण SoundCloud Popup Player 🔥
फ़ाइल का आकार 82.43 KB
स्थापना संख्या 14,503
वर्तमान संस्करण 1.3.9
अंतिम अपडेट 2023-12-17
प्रकाशन तिथि 2020-04-30
रेटिंग 4.72/5 कुल 25 रेटिंग्स
डेवलपर https://akiba.cloud
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/S4WA/soundcloud-player/wiki/How-to-Use
सहायता पृष्ठ URL https://github.com/S4WA/soundcloud-player/issues
समर्थित भाषाएँ 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"
        }
    }
}