Enlarge Youtube Profile Images

Control size of profile images in the Youtube comment section.

Co to jest Enlarge Youtube Profile Images?

Enlarge Youtube Profile Images to rozszerzenie Chrome opracowane przez Polywocker, a jego główną funkcją jest „Control size of profile images in the Youtube comment section.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Enlarge Youtube Profile Images

Pobierz pliki rozszerzeń Enlarge Youtube Profile Images 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

                        - Set preferred profile image size for the Youtube comment section. 
- Hover zoom on profile images. 

It's time to appreciate the memes and put a face to the name. 


Source code: https://github.com/polywock/enlargeYoutubeProfileImages                    

Podstawowe informacje o rozszerzeniu

Nazwa Enlarge Youtube Profile Images Enlarge Youtube Profile Images
ID pmloeageofhljhdedpfpppjbjblbncbc
Oficjalny URL https://chromewebstore.google.com/detail/enlarge-youtube-profile-i/pmloeageofhljhdedpfpppjbjblbncbc
Opis Control size of profile images in the Youtube comment section.
Rozmiar pliku 7 KB
Liczba instalacji 130
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2022-10-08
Data Publikacji 2022-05-05
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Polywocker
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/polywock/enlargeYoutubeProfileImages
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enlarge Youtube Profile Images",
    "version": "0.0.6",
    "description": "Control size of profile images in the Youtube comment section.",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "isolated.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}