HTML5 Autoplay Blocker

Disables autoplay of all HTML5 audio and video

HTML5 Autoplay Blocker란 무엇입니까?

HTML5 Autoplay Blocker은(는) Dov Pins에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disables autoplay of all HTML5 audio and video"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

HTML5 Autoplay Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Disables autoplay of all HTML5 audio and video
THIS EXTENSION IS CURRENTLY UNMAINTAINED; Please see GitHub for the latest news: https://github.com/Eloston/disable-html5-autoplay/blob/master/README.md

======================

Disable HTML5 Autoplay disables HTML5 audio and video autoplaying.

In addition to removing the HTML autoplay attribute from media elements, Disable HTML5 Autoplay also hooks into the media's JavaScript API. This allows for restrictions on media control and simulation of expected behavior to ensure that all pages behave normally.

Head over to the wiki for documentation, support info, and more: https://github.com/Eloston/disable-html5-autoplay/wiki

LINKS:
GitHub Page:  https://github.com/Eloston/disable-html5-autoplay
Changelog: https://github.com/Eloston/disable-html5-autoplay/releases
Issue Tracker: https://github.com/Eloston/disable-html5-autoplay/issues

From Version 1.2 we rewrited all the code and solved most of the major problems,
Please send us feedback if there is any new bugs/problems.
Enjoy :)                    

확장 프로그램 기본 정보

이름 HTML5 Autoplay Blocker HTML5 Autoplay Blocker
ID icppkihnmgkncknjlfkkjgfgoifkcgii
공식 URL https://chrome.google.com/webstore/detail/html5-autoplay-blocker/icppkihnmgkncknjlfkkjgfgoifkcgii
설명 Disables autoplay of all HTML5 audio and video
파일 크기 564 KB
설치 횟수 23,687
현재 버전 1.5.0
최근 업데이트 2019-12-24
출시 날짜 2019-12-24
평점 3.53/5 총 202 개의 평점
개발자 Dov Pins
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Eloston/disable-html5-autoplay
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/e/2PACX-1vTuHh7PLGHUqcVkK84Ms14N3B6ScKrpYCStUiDVOneUsh4_CfnTI70n686wd5OPjIBGSGjUgaZiQOo2/pub
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Autoplay Blocker",
    "short_name": "DisableAutoplay",
    "description": "Disables autoplay of all HTML5 audio and video",
    "version": "1.5.0",
    "author": "Eloston",
    "homepage_url": "https:\/\/github.com\/Eloston\/disable-html5-autoplay\/",
    "minimum_chrome_version": "44.0",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/dormant_19.png",
            "38": "images\/dormant_38.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [],
        "page": "bg.html",
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "webNavigation",
        "",
        "storage",
        "unlimitedStorage",
        "background",
        "webRequest",
        "webRequestBlocking"
    ]
}