WebM Options (Premium)

Set default attributes for direct WebM links

什麼是WebM Options (Premium)?

WebM Options (Premium)是由Miller開發的Chrome擴展程式,該擴展的主要功能是“Set default attributes for direct WebM links”。

擴展截圖

screenshot
screenshot
screenshot

下載WebM Options (Premium)擴展crx文件

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

擴展使用說明

                        Direct links to WebM files have all the video attributes set to Chrome's default values, this extension gives you control over what those values are.

This extension ONLY works with direct links to WebM files, it only works on pages where the URL ends with .webm

To enable this extension to work with local files, check the 'Allow access to file URLs' checkbox underneath the extension in chrome > settings > extensions


If you have any suggestions, comments or if you want to design a nice layout for the options page (or some logos or banners that don't look as terrible as the ones I've made) feel free to contact me.                    

擴展基本資訊

名稱 WebM Options (Premium) WebM Options (Premium)
ID fhgjcfedjhkachipnckecjckmdllpgjh
官方網址 https://chromewebstore.google.com/detail/webm-options-premium/fhgjcfedjhkachipnckecjckmdllpgjh
簡介 Set default attributes for direct WebM links
檔案大小 16.89 KB
安裝次數 1,938
目前版本 1.51
更新時間 2017-11-22
上架時間 2017-11-22
評分 3.68/5 共 22 次評分
開發者 Miller
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebM Options (Premium)",
    "description": "Set default attributes for direct WebM links",
    "version": "1.51",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.webm",
                "https:\/\/*\/*.webm",
                "file:\/\/*\/*.webm"
            ],
            "js": [
                "webmoptions.js"
            ],
            "run_at": "document_start"
        }
    ]
}