ScottTheWozify

Modify YouTube thumbnails to include Scott The Woz

Vad är ScottTheWozify?

ScottTheWozify är en Chrome-tillägg utvecklad av kawuchuu, och dess huvudfunktion är "Modify YouTube thumbnails to include Scott The Woz".

Tilläggsskärmbilder

screenshot

Ladda ner ScottTheWozify-förlängningens CRX-fil

Ladda ner ScottTheWozify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn ScottTheWozify ScottTheWozify
ID acifigdfnfnafjkkapcghalnemfodmah
Officiell webbadress https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah
Beskrivning Modify YouTube thumbnails to include Scott The Woz
Filstorlek 13.02 MB
Antal Installationer 2,000
Aktuell Version 1.5
Senast Uppdaterad 2023-08-25
Publiceringsdatum 2023-08-24
Betyg 5.00/5 Totalt 22 Betyg
Utvecklare kawuchuu
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/kawuchuu/ScottTheWozify-Youtube
Stödda Språk 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\/*"
            ]
        }
    ]
}