Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

Lyrics Translator on Spotify là gì?

Lyrics Translator on Spotify là một tiện ích mở rộng Chrome được phát triển bởi Salih Özkara, và tính năng chính của nó là "An extension that translates lyrics in Spotify.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Lyrics Translator on Spotify

Tải xuống các tệp mở rộng Lyrics Translator on Spotify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        An extension that translates lyrics in Spotify.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lyrics Translator on Spotify Lyrics Translator on Spotify
ID emhdnlfohgdjhebkefiandcofgldlcko
URL Chính Thức https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko
Mô tả An extension that translates lyrics in Spotify.
Kích Thước Tệp 16.35 KB
Số Lần Cài Đặt 445
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-12-28
Ngày Phát Hành 2023-05-22
Đánh Giá 4.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Salih Özkara
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/salihozkara/LyricsTranslatorOnSpotify
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}