Extended Browse for Netflix
Show Netflix hidden sub-categories.
Extended Browse for Netflix란 무엇입니까?
Extended Browse for Netflix은(는) mika.vesasto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show Netflix hidden sub-categories."입니다.
확장 프로그램 스크린샷
Extended Browse for Netflix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
************************************* Updated with German Translations. ************************************* This is a Chrome extension to display better browsing with a hidden categories of a Netflix. These categories isn't available with normal Netflix UI. Main hidden categories is available from EBN's main dialog box. There are many more hidden categories available with a included search feature. Like a "Action & Adventure starring Bruce Lee". Multilanguage support. Translators can help to support more languages. CHANGELOG: * 2020/10/03 -- v.1.1.1 Updated German Translations thanks to dotFionn (https://github.com/dotFionn) and updated language code for new Netflix layout. * 2018/04/03 -- v.1.1.0 Updated to work with Netflix's new layout. No more red extended browse button, but white and it's located in the end of navigation bar. Language support: English, Finnish. If you want your language being supported, please see my project website on Github. https://github.com/Locheed/eb-for-netflix
확장 프로그램 기본 정보
이름 | Extended Browse for Netflix |
ID | oajemdopahhgfbnikcogidfnaaeglfhn |
공식 URL | https://chromewebstore.google.com/detail/extended-browse-for-netfl/oajemdopahhgfbnikcogidfnaaeglfhn |
설명 | Show Netflix hidden sub-categories. |
파일 크기 | 406 KB |
설치 횟수 | 1,045 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2020-10-03 |
출시 날짜 | 2018-04-03 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | mika.vesasto |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Locheed/eb-for-netflix |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extended Browse for Netflix", "description": "Show Netflix hidden sub-categories.", "version": "1.1.1", "author": "Mika Vesasto", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "page_action": { "default_title": "Extended Browse for Netflix", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "js\/contentscript.js", "js\/searchcontent.js", "js\/supersearch.js" ], "css": [ "css\/styles.css" ] } ], "web_accessible_resources": [ "resources\/*", "css\/*", "js\/*" ] } |