YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
Vad är YouTube Timestamp Bookmarker - Gravitate Webs?
YouTube Timestamp Bookmarker - Gravitate Webs är en Chrome-tillägg utvecklad av gravitatewebs, och dess huvudfunktion är "Saving timestamps in YouTube videos".
Tilläggsskärmbilder
Ladda ner YouTube Timestamp Bookmarker - Gravitate Webs-förlängningens CRX-fil
Ladda ner YouTube Timestamp Bookmarker - Gravitate Webs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
Beskrivning | Saving timestamps in YouTube videos |
Filstorlek | 138 KB |
Antal Installationer | 31 |
Aktuell Version | 0.1.0.0 |
Senast Uppdaterad | 2022-06-08 |
Publiceringsdatum | 2022-06-07 |
Utvecklare | gravitatewebs |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://gravitatewebs.com/ |
Stödda Språk | 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 } |