Autoskip Netflix Intro
Skip the intro's on netflix
Что такое Autoskip Netflix Intro?
Autoskip Netflix Intro - это расширение Chrome, разработанное Lukas Demeyere, и его основная функция - "Skip the intro's on netflix".
Снимки экрана расширения
Скачать файл CRX расширения Autoskip Netflix Intro
Скачайте файлы расширений Autoskip Netflix Intro в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Binging your favourite show and getting tired of clicking the button to skip the intro of your Netflix episode? This extension does this automatically for you. You can easy enable/disable this feature. Skip to Next Episode --- You need to refresh your Netflix tab so the extension is loaded and can skip the intro automatically. ---
Основная информация о расширении
Название | Autoskip Netflix Intro |
ID | olljgnejdhpmoolooihgcdoannkfodji |
Официальный URL | https://chromewebstore.google.com/detail/autoskip-netflix-intro/olljgnejdhpmoolooihgcdoannkfodji |
Описание | Skip the intro's on netflix |
Размер файла | 463 KB |
Количество установок | 158 |
Текущая Версия | 0.0.5 |
Последнее Обновление | 2023-04-13 |
Дата публикации | 2020-06-10 |
Рейтинг | 2.78/5 Всего 9 оценок |
Разработчик | Lukas Demeyere |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Autoskip Netflix Intro", "version": "0.0.5", "manifest_version": 3, "description": "Skip the intro's on netflix", "icons": { "16": "icons\/netskips16.png", "48": "icons\/netskips48.png", "128": "icons\/netskips128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_title": "Start skipping" }, "permissions": [ "storage" ] } |