YouTube Screenshot
Save Take screenshots from YouTube video
Cos'è YouTube Screenshot?
YouTube Screenshot è un'estensione di Chrome sviluppata da info, e la sua funzione principale è "Save Take screenshots from YouTube video".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Screenshot
Scarica i file di estensione YouTube Screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | mdblbmmnmgoglgggphofecocdniamacg |
| URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
| Descrizione | Save Take screenshots from YouTube video |
| Dimensione del File | 164 KB |
| Conteggio Installazioni | 230 |
| Versione Corrente | 2.0.0 |
| Ultimo Aggiornamento | 2022-12-05 |
| Data di Pubblicazione | 2022-12-05 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | info |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |