Never Ending Netflix

Automatically play next episode, skip title sequences, skip "Are you still watching?" prompts, and search over 3000 genres!

Что такое Never Ending Netflix?

Never Ending Netflix - это расширение Chrome, разработанное https://jonlu.ca, и его основная функция - "Automatically play next episode, skip title sequences, skip "Are you still watching?" prompts, and search over 3000 genres!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Never Ending Netflix

Скачайте файлы расширений Never Ending Netflix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        NEN is a chrome extension that improves the Netflix experience for power users. It's features include:

* Automatically skip intros
* Automatically play the next episode OR always watch the credits!
* Skip the popups that ask if you're "Still here?" after 8 hours
* Search over 3000 genres from the options page!
* Disable auto play of shows on the home page                    

Основная информация о расширении

Название Never Ending Netflix Never Ending Netflix
ID hdadmgabliibighlbejhlglfjgplfmhb
Официальный URL https://chromewebstore.google.com/detail/never-ending-netflix/hdadmgabliibighlbejhlglfjgplfmhb
Описание Automatically play next episode, skip title sequences, skip "Are you still watching?" prompts, and search over 3000 genres!
Размер файла 380 KB
Количество установок 66,454
Текущая Версия 2.7
Последнее Обновление 2022-05-14
Дата публикации 2020-01-08
Рейтинг 3.58/5 Всего 72 оценок
Разработчик https://jonlu.ca
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jonluca/Never-Ending-Netflix
URL страницы помощи https://jonlu.ca
URL страницы политики конфиденциальности https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Поддерживаемые языки id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_manifest_name__",
    "description": "__MSG_manifest_description__",
    "version": "2.7",
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "*:\/\/*.netflix.co.uk\/*",
        "*:\/\/*.netflix.ar\/*",
        "*:\/\/*.netflix.au\/*",
        "*:\/\/*.netflix.br\/*",
        "*:\/\/*.netflix.ca\/*",
        "*:\/\/*.netflix.fr\/*",
        "*:\/\/*.netflix.de\/*",
        "*:\/\/*.netflix.cz\/*",
        "*:\/\/*.netflix.hk\/*",
        "*:\/\/*.netflix.in\/*",
        "*:\/\/*.netflix.jp\/*",
        "*:\/\/*.netflix.lt\/*",
        "*:\/\/*.netflix.no\/*",
        "*:\/\/*.netflix.nl\/*",
        "*:\/\/*.netflix.pl\/*",
        "*:\/\/*.netflix.ru\/*",
        "*:\/\/*.netflix.sg\/*",
        "*:\/\/*.netflix.sk\/*",
        "*:\/\/*.netflix.es\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*",
                "*:\/\/*.netflix.co.uk\/*",
                "*:\/\/*.netflix.ar\/*",
                "*:\/\/*.netflix.au\/*",
                "*:\/\/*.netflix.br\/*",
                "*:\/\/*.netflix.ca\/*",
                "*:\/\/*.netflix.fr\/*",
                "*:\/\/*.netflix.de\/*",
                "*:\/\/*.netflix.cz\/*",
                "*:\/\/*.netflix.hk\/*",
                "*:\/\/*.netflix.in\/*",
                "*:\/\/*.netflix.jp\/*",
                "*:\/\/*.netflix.lt\/*",
                "*:\/\/*.netflix.no\/*",
                "*:\/\/*.netflix.nl\/*",
                "*:\/\/*.netflix.pl\/*",
                "*:\/\/*.netflix.ru\/*",
                "*:\/\/*.netflix.sg\/*",
                "*:\/\/*.netflix.sk\/*",
                "*:\/\/*.netflix.es\/*"
            ],
            "js": [
                "js\/libs\/jquery.js",
                "js\/selectors.js",
                "js\/common.js",
                "NEN.js"
            ]
        }
    ],
    "icons": {
        "64": "images\/icon64.png",
        "32": "images\/icon32.png",
        "38": "images\/icon.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "js\/selectors.js",
            "js\/common.js",
            "js\/hot-reload.js"
        ]
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_title": "__MSG_manifest_name__"
    },
    "default_locale": "en",
    "homepage_url": "https:\/\/jonlu.ca",
    "web_accessible_resources": [
        "js\/*",
        "data\/*"
    ]
}