Netflix Stop Autoplay
Stop netflix from autoplaying!
Netflix Stop Autoplay란 무엇입니까?
Netflix Stop Autoplay은(는) marcdwyer1738에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop netflix from autoplaying!"입니다.
확장 프로그램 스크린샷
Netflix Stop Autoplay 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Prevents Netflix from autoplaying videos on the homepage. Recently Netflix has allowed users to disable autoplaying content on their website. For more details on how to disable see here: https://help.netflix.com/en/node/2102. Experience any issues? Open up an issue in the repository or e-mail me at [email protected]! https://github.com/MarcDwyer/netflix-stop-autoplay changelog: 2.7.0 A lot less code and more efficient 2.5.0: Reverted some optimizations as it introduced new bugs
확장 프로그램 기본 정보
이름 | Netflix Stop Autoplay |
ID | fbcmkdogjehincilpicohipinoobijem |
공식 URL | https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem |
설명 | Stop netflix from autoplaying! |
파일 크기 | 455 KB |
설치 횟수 | 143 |
현재 버전 | 2.7 |
최근 업데이트 | 2020-09-13 |
출시 날짜 | 2020-05-24 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | marcdwyer1738 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/MarcDwyer/netflix-stop-autoplay |
도움말 페이지 URL | https://github.com/MarcDwyer/netflix-stop-autoplay |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Stop Autoplay", "description": "Stop netflix from autoplaying!", "version": "2.7", "browser_action": { "default_icon": "icon_green.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/", "https:\/\/www.netflix.com\/browse", "https:\/\/www.netflix.com\/browse\/*", "https:\/\/www.netflix.com\/browse\/*\/**" ], "js": [ "js\/content.js" ] } ], "icons": { "16": "icon_green.png", "48": "icon_green.png", "128": "icon_green.png" }, "permissions": [ "storage" ] } |