YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
Co to jest YouTube Timestamp Bookmarker - Gravitate Webs?
YouTube Timestamp Bookmarker - Gravitate Webs to rozszerzenie Chrome opracowane przez gravitatewebs, a jego główną funkcją jest „Saving timestamps in YouTube videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Timestamp Bookmarker - Gravitate Webs
Pobierz pliki rozszerzeń YouTube Timestamp Bookmarker - Gravitate Webs 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
Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
Opis | Saving timestamps in YouTube videos |
Rozmiar pliku | 138 KB |
Liczba instalacji | 31 |
Aktualna Wersja | 0.1.0.0 |
Ostatnia Aktualizacja | 2022-06-08 |
Data Publikacji | 2022-06-07 |
Deweloper | gravitatewebs |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://gravitatewebs.com/ |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Bookmarker - Gravitate Webs", "version": "0.1.0.0", "description": "Saving timestamps in YouTube videos", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs", "default_popup": "popup.html" }, "manifest_version": 3 } |