Transflixed
Add translations to netflix subtitles
Что такое Transflixed?
Transflixed - это расширение Chrome, разработанное http://transflixed.com, и его основная функция - "Add translations to netflix subtitles".
Снимки экрана расширения
Скачать файл CRX расширения Transflixed
Скачайте файлы расширений Transflixed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| 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'"
} | |