Netflix Color Plus
Customize the look of Netflix! Plus extra features for a better user experience!
Netflix Color Plus란 무엇입니까?
Netflix Color Plus은(는) Travis Singleton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize the look of Netflix! Plus extra features for a better user experience!"입니다.
확장 프로그램 스크린샷
Netflix Color Plus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
• 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!
확장 프로그램 기본 정보
이름 | Netflix Color Plus |
ID | chfclabhpdlpbhlphfbflhgoepgjpfae |
공식 URL | https://chromewebstore.google.com/detail/netflix-color-plus/chfclabhpdlpbhlphfbflhgoepgjpfae |
설명 | Customize the look of Netflix! Plus extra features for a better user experience! |
파일 크기 | 175 KB |
설치 횟수 | 3,798 |
현재 버전 | 2.5.1 |
최근 업데이트 | 2023-05-25 |
출시 날짜 | 2020-07-11 |
평점 | 4.58/5 총 12 개의 평점 |
개발자 | Travis Singleton |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://netflixcolorplusextension.000webhostapp.com |
도움말 페이지 URL | https://netflixcolorplusextension.000webhostapp.com |
지원되는 언어 | 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\/*" ] } ] } |