Subtitle Translator 🌎

Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷

Subtitle Translator 🌎คืออะไร?

Subtitle Translator 🌎 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eugene Gluhotorenko และคุณลักษณะหลักของมันคือ "Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Subtitle Translator 🌎

ดาวน์โหลดไฟล์ส่วนขยาย Subtitle Translator 🌎 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Just hover mouse pointer over a subtitles and get fast translation.

• You can select source and target languages in the options dialog.
• If you don't want to read simple common words in subtitles you can hide them in the options dialog (Useful for language learners).

Platforms supported:
• Netflix
• YouTube
• Kinopub                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Subtitle Translator 🌎 Subtitle Translator 🌎
ID dleflnkkioeajpjokhniiaieonpacano
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/subtitle-translator-%F0%9F%8C%8E/dleflnkkioeajpjokhniiaieonpacano
คำอธิบาย Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷
ขนาดไฟล์ 2.86 MB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2022-05-20
วันที่เผยแพร่ 2020-04-23
คะแนน 4.33/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Eugene Gluhotorenko
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gevgeny/SubTranslator
URL หน้าช่วยเหลือ https://github.com/gevgeny/SubTranslator/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Subtitle Translator \ud83c\udf0e",
    "version": "0.3.0",
    "description": "Translate subtitles on Netflix, YouTube, kinopub \ud83c\uddec\ud83c\udde7\ud83c\uddf7\ud83c\uddfa\ud83c\uddea\ud83c\uddf8\ud83c\udde9\ud83c\uddea\ud83c\uddeb\ud83c\uddf7",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "src\/backgroundScript.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_popup": "src\/preferencePopup\/index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "1024": "icons\/icon1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*",
                "*:\/\/*.kino.pub\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/index.js",
        "src\/index.css"
    ],
    "permissions": [
        "https:\/\/www.netflix.com\/*",
        "https:\/\/kino.pub\/*",
        "https:\/\/www.youtube.com\/*",
        "declarativeContent",
        "storage"
    ]
}