Youtube Timestamp
Save youtube videos with exact timestamps for later.
Qu'est-ce que Youtube Timestamp ?
Youtube Timestamp est une extension Chrome développée par kirill17910, et sa fonction principale est "Save youtube videos with exact timestamps for later.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Timestamp
Téléchargez les fichiers d'extension Youtube Timestamp 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
This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them. This is an open source project, and all source code can be found on GitHub. https://github.com/kotikkir9/Youtube Changes: 27/12/2022 - Added new animated delete button.
Informations de Base sur l'Extension
Nom | Youtube Timestamp |
ID | ciognandfojfcelnokkgaapgmafciekl |
URL Officiel | https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl |
Description | Save youtube videos with exact timestamps for later. |
Taille du Fichier | 11.57 KB |
Nombre d'Installations | 179 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2022-12-28 |
Date de Publication | 2022-05-24 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | kirill17910 |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/kotikkir9/Youtube |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Timestamp", "description": "Save youtube videos with exact timestamps for later.", "version": "1.1", "manifest_version": 3, "background": { "service_worker": ".\/src\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" } }, "icons": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |