Custom YouTube Start Stop
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
Что такое Custom YouTube Start Stop?
Custom YouTube Start Stop - это расширение Chrome, разработанное Jonathan Li, и его основная функция - "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…".
Снимки экрана расширения
Скачать файл CRX расширения Custom YouTube Start Stop
Скачайте файлы расширений Custom YouTube Start Stop в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.
Основная информация о расширении
Название | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
Официальный URL | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
Описание | This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is… |
Размер файла | 31.64 KB |
Количество установок | 39 |
Текущая Версия | 0.1.2 |
Последнее Обновление | 2021-05-11 |
Дата публикации | 2021-05-11 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | Jonathan Li |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom YouTube Start Stop", "version": "0.1.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_title": "Custom YouTube Start Stop", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |