Deezer Track Share

Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms

Deezer Track Share क्या है?

Deezer Track Share natenho द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms"।

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

screenshot

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

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

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

                        Includes the share button easily available from Deezer Web main page.

Includes the SongLink share button, to open the current song in SongLink share page.

Also includes buttons to open the current playing song in other platforms:
- YouTube
- Spotify                    

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

नाम Deezer Track Share Deezer Track Share
ID akgbpfoklebfkmbjghlibihpbbknclpp
आधिकारिक URL https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp
विवरण Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
फ़ाइल का आकार 18.79 KB
स्थापना संख्या 19
वर्तमान संस्करण 0.0.0.2
अंतिम अपडेट 2021-08-06
प्रकाशन तिथि 2021-04-18
डेवलपर natenho
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deezer Track Share",
    "description": "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms",
    "version": "0.0.0.2",
    "browser_action": {
        "default_icon": "icon96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.deezer.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.deezer.com\/*",
        "https:\/\/api.song.link\/*"
    ],
    "web_accessible_resources": [
        "sharebutton.html"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png"
    }
}