Disable HTML5 Autoplay

Disables autoplay of all HTML5 audio and video

什麼是Disable HTML5 Autoplay?

Disable HTML5 Autoplay是由Eloston開發的Chrome擴展程式,該擴展的主要功能是“Disables autoplay of all HTML5 audio and video”。

擴展截圖

screenshot

下載Disable HTML5 Autoplay擴展crx文件

下載Disable HTML5 Autoplay擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Disable HTML5 Autoplay Disable HTML5 Autoplay
ID efdhoaajjjgckpbkoglidkeendpkolai
官方網址 https://chromewebstore.google.com/detail/disable-html5-autoplay/efdhoaajjjgckpbkoglidkeendpkolai
簡介 Disables autoplay of all HTML5 audio and video
檔案大小 26.52 KB
安裝次數 206,216
目前版本 0.6.2
更新時間 2017-09-26
上架時間 2017-09-26
評分 3.42/5 共 1037 次評分
開發者 Eloston
付費類型 free
擴展官網 https://github.com/Eloston/disable-html5-autoplay/blob/master/NEWS.md
說明頁面URL https://github.com/Eloston/disable-html5-autoplay/blob/master/NEWS.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable HTML5 Autoplay",
    "short_name": "DisableAutoplay",
    "description": "Disables autoplay of all HTML5 audio and video",
    "version": "0.6.2",
    "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": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "webNavigation",
        "",
        "storage",
        "unlimitedStorage"
    ]
}