Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

Lyrics Translator on Spotify क्या है?

Lyrics Translator on Spotify Salih Özkara द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that translates lyrics in Spotify."।

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

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

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

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

                        An extension that translates lyrics in Spotify.                    

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

नाम Lyrics Translator on Spotify Lyrics Translator on Spotify
ID emhdnlfohgdjhebkefiandcofgldlcko
आधिकारिक URL https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko
विवरण An extension that translates lyrics in Spotify.
फ़ाइल का आकार 16.35 KB
स्थापना संख्या 445
वर्तमान संस्करण 1.1
अंतिम अपडेट 2023-12-28
प्रकाशन तिथि 2023-05-22
रेटिंग 4.56/5 कुल 9 रेटिंग्स
डेवलपर Salih Özkara
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/salihozkara/LyricsTranslatorOnSpotify
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Lyrics Translator on Spotify",
    "version": "1.1",
    "description": "An extension that translates lyrics in Spotify.",
    "author": "Salih \u00d6zkara",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/open.spotify.com\/*",
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}