YouTube Screenshot
Save Take screenshots from YouTube video
Wat is YouTube Screenshot?
YouTube Screenshot is een Chrome-extensie ontwikkeld door info, en de belangrijkste functie is "Save Take screenshots from YouTube video".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Screenshot
Download YouTube Screenshot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
Beschrijving | Save Take screenshots from YouTube video |
Bestandsgrootte | 164 KB |
Aantal Installaties | 230 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2022-12-05 |
Publicatiedatum | 2022-12-05 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | info |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |