Traditou: Dual Subtitles for Prime & More

Provides auto-translated dual subtitles on streaming websites: PrimeVideo, Noovo.ca, TeleQuebec.tv, Tou.tv, and TV5Unis.ca.

Traditou: Dual Subtitles for Prime & More क्या है?

Traditou: Dual Subtitles for Prime & More Chuyun Shen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides auto-translated dual subtitles on streaming websites: PrimeVideo, Noovo.ca, TeleQuebec.tv, Tou.tv, and TV5Unis.ca."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Traditou: Dual Subtitles for Prime & More एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Traditou intercepts the original subtitle files sent from the website servers, parses them and displays the original subtitles along with translated subtitles on the bottom, with Google translate.

This extension can be used with a number of streaming websites: Amazon Prime Video, Tou.tv, Noovo.ca, TeleQuebec, and TV5Unis, with the goal of language learning in mind.

Traditou not only matches words closely, it also transforms TV-style rolling captions (which are visually difficult to follow) into more readable streaming service style subtitles.

Traditou offers three different subtitle modes:
1. Original + translated dual subtitles
2. Improved original subtitles only (no more TV-style rolling subtitles)
3. Translated subtitles only

You can find a detailed tutorial for Traditou through the popup panel on the upper-right side of the browser. Feel free to pin Traditou on your Chrome menu bar for easy access.

Traditou is free and open-source: https://github.com/chuyunshen/traditou

Regarding the warning popup box upon installation:
*Traditou reads and changes your data solely to fetch subtitle files from video streaming servers and display the subtitles on your webpage.*
*Browser history: Traditou reads only your current URL to only see if you are on PrimeVideo, Tou.tv, Noovo, TeleQuebec, or TV5Unis, so subtitle services can be provided.*                    

एक्सटेंशन की मूल जानकारी

नाम Traditou: Dual Subtitles for Prime & More Traditou: Dual Subtitles for Prime & More
ID bkjdjjgheofjpchhfpbnfcaklcboaoob
आधिकारिक URL https://chromewebstore.google.com/detail/traditou-dual-subtitles-f/bkjdjjgheofjpchhfpbnfcaklcboaoob
विवरण Provides auto-translated dual subtitles on streaming websites: PrimeVideo, Noovo.ca, TeleQuebec.tv, Tou.tv, and TV5Unis.ca.
फ़ाइल का आकार 541 KB
स्थापना संख्या 88
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2024-01-02
प्रकाशन तिथि 2023-02-08
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Chuyun Shen
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/chuyunshen/traditou
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Traditou: Dual Subtitles for Prime & More",
    "description": "Provides auto-translated dual subtitles on streaming websites: PrimeVideo, Noovo.ca, TeleQuebec.tv, Tou.tv, and TV5Unis.ca.",
    "version": "1.2.1",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "32": "icons\/icon32.png",
        "24": "icons\/icon24.png",
        "16": "icons\/icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/video.telequebec.tv\/*",
        "https:\/\/*.brightcovecdn.com\/*",
        "https:\/\/www.noovo.ca\/*",
        "https:\/\/*.9c9media.com\/*",
        "https:\/\/*.tou.tv\/*",
        "https:\/\/*.akamaized.net\/*",
        "https:\/\/*.primevideo.com\/*",
        "https:\/\/*.pv-cdn.net\/*",
        "https:\/\/*.tv5unis.ca\/*",
        "https:\/\/*.llnw.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.noovo.ca\/*"
            ],
            "js": [
                "dist\/noovo_bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/ici.tou.tv\/*"
            ],
            "js": [
                "dist\/toutv_bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/video.telequebec.tv\/*"
            ],
            "js": [
                "dist\/telequebec_bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.primevideo.com\/*"
            ],
            "js": [
                "dist\/prime_bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.tv5unis.ca\/*"
            ],
            "js": [
                "dist\/tv5_bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/utils.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "fonts\/Maler.ttf"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html"
    }
}