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…
Co to jest Custom YouTube Start Stop?
Custom YouTube Start Stop to rozszerzenie Chrome opracowane przez Jonathan Li, a jego główną funkcją jest „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…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Custom YouTube Start Stop
Pobierz pliki rozszerzeń Custom YouTube Start Stop w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
Oficjalny URL | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
Opis | 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… |
Rozmiar pliku | 31.64 KB |
Liczba instalacji | 39 |
Aktualna Wersja | 0.1.2 |
Ostatnia Aktualizacja | 2021-05-11 |
Data Publikacji | 2021-05-11 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Jonathan Li |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |