Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
Что такое Netflix Skipper?
Netflix Skipper - это расширение Chrome, разработанное Ran Ribenzaft, и его основная функция - "Automatically skip Netflix intros, recaps, and next episode prompts.".
Снимки экрана расширения
Скачать файл CRX расширения Netflix Skipper
Скачайте файлы расширений Netflix Skipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically skip Netflix intros, recaps, and next episode prompts. Don't waste any more time waiting or clicking on intros, recaps, and next episode buttons. Once the extension is installed, reload or open a Netflix Tab, and it will work automatically. Through the popup, you can configure which events (intros, recaps, and next episode) you would like to skip. This extension supports ALL Netflix languages! GitHub repo: https://github.com/ranrib/netflix-skipper
Основная информация о расширении
Название | Netflix Skipper |
ID | lgmpgoepilkhieepoliajnandndkffab |
Официальный URL | https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab |
Описание | Automatically skip Netflix intros, recaps, and next episode prompts. |
Размер файла | 147 KB |
Количество установок | 3,415 |
Текущая Версия | 1.0 |
Последнее Обновление | 2022-01-27 |
Дата публикации | 2022-01-27 |
Рейтинг | 5.00/5 Всего 9 оценок |
Разработчик | Ran Ribenzaft |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/ranrib/netflix-skipper |
URL страницы помощи | https://github.com/ranrib/netflix-skipper |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Skipper", "description": "Automatically skip Netflix intros, recaps, and next episode prompts.", "author": "Ran Ribenzaft", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_script.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "src\/popup.html", "default_icon": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } }, "icons": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } } |