Discord Radio

Creates a Discord Rich Presence and allows friends to listen along to the YouTube page that has been selected.

Discord Radio क्या है?

Discord Radio discordradio.devs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a Discord Rich Presence and allows friends to listen along to the YouTube page that has been selected."।

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

screenshot
screenshot

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

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

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

                        Discord Radio is the first ever Discord Rich Presence feature which not only shares the song/video you are currently listening/watching on YouTube, but also competes with the Spotify Premium Listen Along feature by allowing friends to listen along!

With our dear friend Groovy receiving a cease and desist from Google 😢, and probably many music bots at risk of following, we hope you agree that Discord Radio is the next best thing in town!

It cooperates with the Discord Radio Host-Client to send the data to discord.
To get the Host-Client visit https://github.com/scarcheek/DiscordRadio

After you've shared your activity on Discord, people can visit http://discordradio.tk/d/DiscordTag/0000 to listen along with the user.                    

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

नाम Discord Radio Discord Radio
ID inhkknpphjhmhlkmlnmoaldikmfciecc
आधिकारिक URL https://chromewebstore.google.com/detail/discord-radio/inhkknpphjhmhlkmlnmoaldikmfciecc
विवरण Creates a Discord Rich Presence and allows friends to listen along to the YouTube page that has been selected.
फ़ाइल का आकार 8.41 MB
स्थापना संख्या 93
वर्तमान संस्करण 0.9.9
अंतिम अपडेट 2022-11-04
प्रकाशन तिथि 2021-09-15
डेवलपर discordradio.devs
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Discord Radio",
    "description": "Creates a Discord Rich Presence and allows friends to listen along to the YouTube page that has been selected.",
    "version": "0.9.9",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "node_modules\/webextension-polyfill\/dist\/browser-polyfill.min.js",
                "src\/yt-content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.discordradio.tk\/*"
            ],
            "js": [
                "node_modules\/webextension-polyfill\/dist\/browser-polyfill.min.js",
                "src\/dr-content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "node_modules\/webextension-polyfill\/dist\/browser-polyfill.min.js",
            "node_modules\/pure-uuid\/uuid.min.js",
            "src\/background\/discord-rpc.js",
            "src\/background\/server.js",
            "src\/background\/logic.js",
            "src\/background\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "src\/popup\/moodpicker.html",
        "default_title": "Discord Radio",
        "default_icon": {
            "16": "assets\/logo\/icon16.png",
            "32": "assets\/logo\/icon32.png",
            "48": "assets\/logo\/icon48.png",
            "128": "assets\/logo\/icon128.png"
        }
    },
    "icons": {
        "16": "assets\/logo\/icon16.png",
        "32": "assets\/logo\/icon32.png",
        "48": "assets\/logo\/icon48.png",
        "128": "assets\/logo\/icon128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}