Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

Lyrics Translator on Spotifyとは何ですか?

Lyrics Translator on SpotifyはSalih Özkaraによって開発されたChromeの拡張機能で、その主な機能は「An extension that translates lyrics in Spotify.」です。

拡張機能のスクリーンショット

Lyrics Translator on Spotify拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}