Youtube Translater

Translate youtube comments to a preferred language

什麼是Youtube Translater?

Youtube Translater是由theimmortalwarrior071開發的Chrome擴展程式,該擴展的主要功能是“Translate youtube comments to a preferred language”。

擴展截圖

screenshot
screenshot

下載Youtube Translater擴展crx文件

下載Youtube Translater擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language.                    

擴展基本資訊

名稱 Youtube Translater Youtube Translater
ID hbmhbomgnplnfobcbmlglcpahldkepfg
官方網址 https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg
簡介 Translate youtube comments to a preferred language
檔案大小 10.45 KB
安裝次數 24
目前版本 0.1.0
更新時間 2023-07-27
上架時間 2023-07-27
評分 4.60/5 共 10 次評分
開發者 theimmortalwarrior071
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Translater",
    "description": "Translate youtube comments to a preferred language",
    "version": "0.1.0",
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "icons\/logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}