ScottTheWozify
Modify YouTube thumbnails to include Scott The Woz
Co to jest ScottTheWozify?
ScottTheWozify to rozszerzenie Chrome opracowane przez kawuchuu, a jego główną funkcją jest „Modify YouTube thumbnails to include Scott The Woz”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ScottTheWozify
Pobierz pliki rozszerzeń ScottTheWozify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | acifigdfnfnafjkkapcghalnemfodmah |
| Oficjalny URL | https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah |
| Opis | Modify YouTube thumbnails to include Scott The Woz |
| Rozmiar pliku | 13.02 MB |
| Liczba instalacji | 2,000 |
| Aktualna Wersja | 1.5 |
| Ostatnia Aktualizacja | 2023-08-25 |
| Data Publikacji | 2023-08-24 |
| Ocena | 5.00/5 Łącznie 22 Oceny |
| Deweloper | kawuchuu |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/kawuchuu/ScottTheWozify-Youtube |
| Obsługiwane Języki | 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\/*"
]
}
]
} | |