Netflix Color Plus
Customize the look of Netflix! Plus extra features for a better user experience!
Co je Netflix Color Plus?
Netflix Color Plus je rozšíření Chrome vyvinuté Travis Singleton, a jeho hlavní funkcí je „Customize the look of Netflix! Plus extra features for a better user experience!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Netflix Color Plus
Stáhněte si soubory rozšíření Netflix Color Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
• Custom Color: Customize the way Netflix looks by selecting any of your favorite colors! • Auto Select Profile: Enter your profile name exactly as it is on Netflix and your profile will automatically be selected every time you log into Netflix! • Auto Skip Intros: Automatically skips episode intros for you so you can binge your favorite shows! • Auto Skip Recaps: Automatically skips episode recaps for you! • Auto Watch Next Episode: Automatically plays the next episode! • No Spoilers: Covers up episode thumbnails so you don't get any spoilers! • Lights out: Makes Netflix even darker with a completely black background! • Dark Account Settings: Makes account settings match the rest of Netflix! • Round Profile Pictures: Simply makes profile pictures round instead of boxes. • Visible Pagination: Makes pagination actually visible. I respect your privacy and i do not gather or request any personal information!
Základní Informace o Rozšíření
Název | Netflix Color Plus |
ID | chfclabhpdlpbhlphfbflhgoepgjpfae |
Oficiální URL | https://chromewebstore.google.com/detail/netflix-color-plus/chfclabhpdlpbhlphfbflhgoepgjpfae |
Popis | Customize the look of Netflix! Plus extra features for a better user experience! |
Velikost souboru | 175 KB |
Počet instalací | 3,798 |
Aktuální Verze | 2.5.1 |
Poslední Aktualizace | 2023-05-25 |
Datum Vydání | 2020-07-11 |
Hodnocení | 4.58/5 Celkem 12 Hodnocení |
Vývojář | Travis Singleton |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://netflixcolorplusextension.000webhostapp.com |
URL Stránky Nápovědy | https://netflixcolorplusextension.000webhostapp.com |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Netflix Color Plus", "description": "Customize the look of Netflix! Plus extra features for a better user experience!", "version": "2.5.1", "icons": { "16": "icons\/netflix-color-plus-16.png", "48": "icons\/netflix-color-plus-48.png", "128": "icons\/netflix-color-plus-128.png" }, "background": { "service_worker": "assets\/js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "run_at": "document_start", "js": [ "content_scripts\/content_script.js" ] } ], "action": { "default_popup": "options_popup\/options_popup.html", "default_icon": { "16": "icons\/netflix-color-plus-16.png", "48": "icons\/netflix-color-plus-48.png", "128": "icons\/netflix-color-plus-128.png" } }, "permissions": [ "storage" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "resources": [ "css\/*" ] } ] } |