MyPicture for Netflix: custom profile picture

Extension to make a custom Netflix profile picture. Personalize your user account and choose your own profile icon

Co to jest MyPicture for Netflix: custom profile picture?

MyPicture for Netflix: custom profile picture to rozszerzenie Chrome opracowane przez TheBestChromeExtensions, a jego główną funkcją jest „Extension to make a custom Netflix profile picture. Personalize your user account and choose your own profile icon”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia MyPicture for Netflix: custom profile picture

Pobierz pliki rozszerzeń MyPicture for Netflix: custom profile picture 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

                        Nowadays you can customize almost everything, so why not Netflix profile picture? 
If you’re bored with the limited image options available on Netflix this extension is for you!

Make your avatar stand out by uploading a picture of your choice. Whether it’s your selfie, cute photo of your pet, or your favorite band’s logo, now you can individualize your profile even more. Add some personal touch to your watching experience.

How does it work?
1. Add the MyPicture for Netflix extension to your browser
2. Set the username you want to change
3. Choose a picture to use as your avatar. Use a square one for the best result. 

Make your profile more distinctive and 100% personalized. It's as simple as that!

Please note: the extension will only modify the profile picture on the device it is installed on. This means your new picture won't be visible on smart TVs or smartphones.

Disclaimer : Netflix is a trademark of Netflix, Inc.. This website & extension hold no association or affiliation with Netflix or any third-party companies.                    

Podstawowe informacje o rozszerzeniu

Nazwa MyPicture for Netflix: custom profile picture MyPicture for Netflix: custom profile picture
ID mejmjhmdfmoliphijcoonnfnlpmilccj
Oficjalny URL https://chromewebstore.google.com/detail/mypicture-for-netflix-cus/mejmjhmdfmoliphijcoonnfnlpmilccj
Opis Extension to make a custom Netflix profile picture. Personalize your user account and choose your own profile icon
Rozmiar pliku 16.74 KB
Liczba instalacji 718
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-11-22
Data Publikacji 2022-03-10
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper TheBestChromeExtensions
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.vodextended.com/privacy_policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MyPicture for Netflix: custom profile picture",
    "description": "Extension to make a custom Netflix profile picture. Personalize your user account and choose your own profile icon",
    "version": "1.0.3",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*.netflix.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "Netflix36Profile.png"
    },
    "content_scripts": [
        {
            "js": [
                "options.js",
                "engine.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "css": [
                "injectedCss.css"
            ]
        }
    ],
    "icons": {
        "36": "Netflix36Profile.png",
        "128": "Netflix128Profile.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}