No AutoPlay

Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.

No AutoPlay란 무엇입니까?

No AutoPlay은(는) jccovey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab."입니다.

No AutoPlay 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Limited to YouTube videos. 

The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.                    

확장 프로그램 기본 정보

이름 No AutoPlay No AutoPlay
ID kpcjcnadodbmcfhkknekeofhidnkjeii
공식 URL https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii
설명 Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
파일 크기 4.07 KB
설치 횟수 116
현재 버전 1.0.0
최근 업데이트 2017-12-06
출시 날짜 2017-12-06
평점 3.00/5 총 7 개의 평점
개발자 jccovey
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No AutoPlay",
    "version": "1.0.0",
    "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtu.be\/*",
                "https:\/\/*.youtu.be\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}