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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}