Playback Time Calculator | YouTube, Udemy
Calculate time by playback speed of video and playlist.
Co to jest Playback Time Calculator | YouTube, Udemy?
Playback Time Calculator | YouTube, Udemy to rozszerzenie Chrome opracowane przez heesangbb, a jego główną funkcją jest „Calculate time by playback speed of video and playlist.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Playback Time Calculator | YouTube, Udemy
Pobierz pliki rozszerzeń Playback Time Calculator | YouTube, Udemy 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 extension displays time by playback speed of videos and playlists.
Features:
Displays the time by playback speed of video.
Displays the total playing time of the playlist(by playback speed).
How to use:
⏱: Time is displayed by playback speed when you mouse over it.
Caution:
If there are more than 100 videos in the playlist, scroll down and it will be counted again when loading is complete. - youtube Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | kgjhahmomjhljmdaifmfepffdeldmpmg |
| Oficjalny URL | https://chromewebstore.google.com/detail/playback-time-calculator/kgjhahmomjhljmdaifmfepffdeldmpmg |
| Opis | Calculate time by playback speed of video and playlist. |
| Rozmiar pliku | 13.22 KB |
| Liczba instalacji | 138 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2022-08-26 |
| Data Publikacji | 2022-08-01 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | heesangbb |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/heesangbb/playback-time-calculator-extension |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Playback Time Calculator | YouTube, Udemy",
"description": "Calculate time by playback speed of video and playlist.",
"version": "1.0.1",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.udemy.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"icons": {
"128": "\/assets\/icon_128.png"
}
} | |