ScottTheWozify
Modify YouTube thumbnails to include Scott The Woz
Hvad er ScottTheWozify?
ScottTheWozify er en Chrome-udvidelse udviklet af kawuchuu, og dens hovedfunktion er "Modify YouTube thumbnails to include Scott The Woz".
Udvidelsesskærmbilleder
Download ScottTheWozify-udvidelses-CRX-fil
Download ScottTheWozify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | ScottTheWozify |
ID | acifigdfnfnafjkkapcghalnemfodmah |
Officiel URL | https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah |
Beskrivelse | Modify YouTube thumbnails to include Scott The Woz |
Filstørrelse | 13.02 MB |
Antal Installationer | 2,000 |
Nuværende Version | 1.5 |
Senest Opdateret | 2023-08-25 |
Udgivelsesdato | 2023-08-24 |
Bedømmelse | 5.00/5 Samlet 22 Bedømmelser |
Udvikler | kawuchuu |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/kawuchuu/ScottTheWozify-Youtube |
Understøttede Sprog | 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\/*" ] } ] } |