YouTube Timestamper
Allows you to quickly copy current video/stream timestamp (with offset).
Qu'est-ce que YouTube Timestamper ?
YouTube Timestamper est une extension Chrome développée par IAmVisco, et sa fonction principale est "Allows you to quickly copy current video/stream timestamp (with offset).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Timestamper
Téléchargez les fichiers d'extension YouTube Timestamper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A small utility tool that allows you to copy current video or stream timestamp. Icon by Iconpacks.
Informations de Base sur l'Extension
Nom | YouTube Timestamper |
ID | fpjlholgdibolbjehinkkmbgodapojmp |
URL Officiel | https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp |
Description | Allows you to quickly copy current video/stream timestamp (with offset). |
Taille du Fichier | 16.88 KB |
Nombre d'Installations | 82 |
Version Actuelle | 1.3.0 |
Dernière Mise à Jour | 2023-06-21 |
Date de Publication | 2021-05-07 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | IAmVisco |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamper", "version": "1.3.0", "description": "Allows you to quickly copy current video\/stream timestamp (with offset).", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "YouTube Timestamper" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/live\/*" ], "js": [ "inject-button.js", "utils.js" ], "css": [ "button.css" ] } ], "options_ui": { "page": "settings\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |