QuieNet
Stop Ynet's annoying video auto-play
QuieNet란 무엇입니까?
QuieNet은(는) Eran에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop Ynet's annoying video auto-play"입니다.
확장 프로그램 스크린샷
QuieNet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Ynet is a great site, but the auto-playing embedded videos can be extremely annoying. For some reasons, the site designers overlook or ignore the fact that people use tabs these days, and one might open a bunch of tabs before reviewing each one of the pages. When this is done, multiple pages start to play their content, creating a disturbing noise. QuieNet is a Chrome extension that prevents videos from being automatically played. The extension hooks Ynet pages, and replaces media player with a stub. When the stub is clicked by the user, the original player is restored, and the video is played. New in version 2.0 =================== * Video autoplay is cleanly prevented, without replacing the video player. * Autoplay is prevented even if player is not the first one on the page.
확장 프로그램 기본 정보
이름 | QuieNet |
ID | dalffmmkadmfpfagclclkagdigdjnhae |
공식 URL | https://chromewebstore.google.com/detail/quienet/dalffmmkadmfpfagclclkagdigdjnhae |
설명 | Stop Ynet's annoying video auto-play |
파일 크기 | 94.15 KB |
설치 횟수 | 97 |
현재 버전 | 2.0 |
최근 업데이트 | 2014-08-01 |
출시 날짜 | 2014-08-01 |
평점 | 4.30/5 총 10 개의 평점 |
개발자 | Eran |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://quienet.codeplex.com/ |
도움말 페이지 URL | https://quienet.codeplex.com/ |
지원되는 언어 | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "QuieNet", "short_name": "QuieNet", "description": "Stop Ynet's annoying video auto-play", "version": "2.0", "icons": { "16": "QuieNet16.png", "48": "QuieNet48.png", "128": "QuieNet128.png" }, "browser_action": { "default_icon": "QuieNet48.png", "default_popup": "popup.html" }, "permissions": [ "storage", "http:\/\/www.ynet.co.il\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.ynet.co.il\/*" ], "js": [ "jquery-2.1.1.js", "video_handler.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "http:\/\/www.ynet.co.il\/*" ], "js": [ "jquery-2.1.1.js", "live_handler.js" ], "run_at": "document_end", "all_frames": true } ] } |