Transflixed

Add translations to netflix subtitles

Transflixed क्या है?

Transflixed http://transflixed.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add translations to netflix subtitles"।

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

screenshot

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

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

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

                        Translate existing subtitles in Netflix to give dual language.  This may be useful in learning a language.  

Currently only German to English.  

Usage:
Install the extension
Turn it on (click the icon and click the power button to get it to turn red)
Log into netflix.com and play a video which has subtitles
Wait for the translation to complete (you should see a notification displaying progress).  Try hitting refresh if this doesn't happen...

Not officially supported by anyone.  Not well tested.  

Code on GitHub: https://github.com/hajamie/transflixed                    

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

नाम Transflixed Transflixed
ID oidimfcfbfnfodkclkaoeaobgnpbeopp
आधिकारिक URL https://chrome.google.com/webstore/detail/transflixed/oidimfcfbfnfodkclkaoeaobgnpbeopp
विवरण Add translations to netflix subtitles
फ़ाइल का आकार 124 KB
स्थापना संख्या 276
वर्तमान संस्करण 0.0.0.1
अंतिम अपडेट 2018-04-10
प्रकाशन तिथि 2018-04-10
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर http://transflixed.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://transflixed.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Transflixed",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "description": "Add translations to netflix subtitles",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "transfixed.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "images\/iconOff19.png",
            "38": "images\/iconOff38.png"
        }
    },
    "web_accessible_resources": [
        "content.js",
        "worker.js",
        "style.css"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.netflix.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}