Netflix subtitles pop-up
Displays the subtitles in a different window
Что такое Netflix subtitles pop-up?
Netflix subtitles pop-up - это расширение Chrome, разработанное entibo, и его основная функция - "Displays the subtitles in a different window".
Снимки экрана расширения
Скачать файл CRX расширения Netflix subtitles pop-up
Скачайте файлы расширений Netflix subtitles pop-up в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When you understand most of the dialog but still like having a reference in case you don't get a word or sentence.
If you any suggestions/comments about how the subtitles are displayed in the window please let me know ! Основная информация о расширении
| Название | |
| ID | gfldjeiohckdhnpljblnkkbjmmogphnk |
| Официальный URL | https://chromewebstore.google.com/detail/netflix-subtitles-pop-up/gfldjeiohckdhnpljblnkkbjmmogphnk |
| Описание | Displays the subtitles in a different window |
| Размер файла | 38.64 KB |
| Количество установок | 273 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2019-04-20 |
| Дата публикации | 2019-04-20 |
| Рейтинг | 4.29/5 Всего 7 оценок |
| Разработчик | entibo |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Netflix subtitles pop-up",
"version": "1.2",
"description": "Displays the subtitles in a different window",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"*:\/\/*.netflix.com\/*"
],
"content_scripts": [
{
"js": [
"player.js"
],
"matches": [
"*:\/\/*.netflix.com\/watch*"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"manifest_version": 2
} | |