Netfix
Netfix removes the auto playing previews on Netflix.
Netfix란 무엇입니까?
Netfix은(는) Samuel Kadolph에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Netfix removes the auto playing previews on Netflix."입니다.
확장 프로그램 스크린샷
Netfix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of Netflix's auto playing preview ads? Install this extension and those will be disabled! Code available at https://github.com/samuelkadolph/netfix. Report issues at https://github.com/samuelkadolph/netfix/issues. Changelog: v0.3.0 - Switched to block network requests for the preview videos - Added option to turn preview blocking on and off v0.2.0 - Added options page - Added option to hide the whole billboard instead of just the preview video v0.1.7 - Replaced placeholder 16x16 icon v0.1.6 - Now removes the preview video when returning to the browse page
확장 프로그램 기본 정보
이름 | |
ID | dlceeplebocldajolniciioiliocihco |
공식 URL | https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco |
설명 | Netfix removes the auto playing previews on Netflix. |
파일 크기 | 14.26 KB |
설치 횟수 | 216 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2017-12-10 |
출시 날짜 | 2017-12-09 |
평점 | 3.33/5 총 12 개의 평점 |
개발자 | Samuel Kadolph |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/samuelkadolph/netfix |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "javascripts\/background.js" ] }, "content_scripts": [ { "js": [ "javascripts\/netfix.js" ], "matches": [ "https:\/\/www.netflix.com\/*" ] } ], "description": "Netfix removes the auto playing previews on Netflix.", "icons": { "16": "images\/icon16.png", "38": "images\/icon38.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2, "name": "Netfix", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "https:\/\/*.nflxvideo.net\/*", "https:\/\/www.netflix.com\/*", "storage", "webRequest", "webRequestBlocking" ], "short_name": "Netfix", "version": "0.3.0" } |