Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

ما هو Lyrics Translator on Spotify؟

Lyrics Translator on Spotify هو إضافة Chrome تم تطويرها بواسطة Salih Özkara، والميزة الرئيسية لها هي "An extension that translates lyrics in Spotify.".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة Lyrics Translator on Spotify

قم بتنزيل ملفات الامتداد Lyrics Translator on Spotify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}