YouTube Screenshot
Save Take screenshots from YouTube video
Qu'est-ce que YouTube Screenshot ?
YouTube Screenshot est une extension Chrome développée par info, et sa fonction principale est "Save Take screenshots from YouTube video".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Screenshot
Téléchargez les fichiers d'extension YouTube Screenshot 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 add-on to take screenshots of YouTube videos with one click. - This add-on is completely free to use. - This add-on adds an extra button in the YouTube player to take a screenshot of the video.
Informations de Base sur l'Extension
Nom | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
Description | Save Take screenshots from YouTube video |
Taille du Fichier | 164 KB |
Nombre d'Installations | 230 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2022-12-05 |
Date de Publication | 2022-12-05 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | info |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Screenshot", "description": "Save Take screenshots from YouTube video", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "options_ui": { "page": "options\/index.html" }, "icons": { "128": "icons\/icon.png" } } |