WebM Options (Premium)

Set default attributes for direct WebM links

O que é WebM Options (Premium)?

WebM Options (Premium) é uma extensão do Chrome desenvolvida por Miller, e sua principal característica é "Set default attributes for direct WebM links".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão WebM Options (Premium)

Baixe arquivos de extensão WebM Options (Premium) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome WebM Options (Premium) WebM Options (Premium)
ID fhgjcfedjhkachipnckecjckmdllpgjh
URL Oficial https://chromewebstore.google.com/detail/webm-options-premium/fhgjcfedjhkachipnckecjckmdllpgjh
Descrição Set default attributes for direct WebM links
Tamanho do Arquivo 16.89 KB
Contagem de Instalações 1,938
Versão Atual 1.51
Última Atualização 2017-11-22
Data de Publicação 2017-11-22
Classificação 3.68/5 Total de 22 Avaliações
Desenvolvedor Miller
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}