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