ScottTheWozify
Modify YouTube thumbnails to include Scott The Woz
Cos'è ScottTheWozify?
ScottTheWozify è un'estensione di Chrome sviluppata da kawuchuu, e la sua funzione principale è "Modify YouTube thumbnails to include Scott The Woz".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ScottTheWozify
Scarica i file di estensione ScottTheWozify 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
Is your browser experience boring? Do you need to resist playing Donkey Kong: Barrel Blast? Fear no more. This extension adds the guy who owns Sonic Jam Scott The Woz to every YouTube thumbnail.
Informazioni di Base sull'Estensione
Nome | ScottTheWozify |
ID | acifigdfnfnafjkkapcghalnemfodmah |
URL Ufficiale | https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah |
Descrizione | Modify YouTube thumbnails to include Scott The Woz |
Dimensione del File | 13.02 MB |
Conteggio Installazioni | 2,000 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2023-08-25 |
Data di Pubblicazione | 2023-08-24 |
Valutazione | 5.00/5 Totale 22 Valutazioni |
Sviluppatore | kawuchuu |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kawuchuu/ScottTheWozify-Youtube |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ScottTheWozify", "version": "1.5", "action": { "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png" }, "default_popup": "options\/options.html", "default_title": "ScottTheWozify Options" }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png" }, "description": "Modify YouTube thumbnails to include Scott The Woz", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "scottthewozify.js" ], "run_at": "document_idle" } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "images\/*.png", "images\/*.json" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |