webmBed

Taking .webm urls and displaying the video inline

¿Qué es webmBed?

webmBed es una extensión de Chrome desarrollada por Valeyard, y su función principal es "Taking .webm urls and displaying the video inline".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión webmBed

Descarga archivos de extensión webmBed en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Takes any standard url to a .webm video and replaces it with the embedded version of the video.

It SHOULD embed video on all sites (minus Twitter) but if you run into any problems just contact me with the problem site and I'll fix it.

Hit the icon (as seen in the screenshots, located on the right hand side of the address bar) to bring up the menu to disable/enable the feature

Update: v0.7.9 - Changed the URL recognition so it ignores duff urls and only displays relevant results. This is likely to need a lot more updating but I need user feedback on specific instances for that                    

Información Básica de la Extensión

Nombre webmBed webmBed
ID gfbfkmmaicfmegknnopfbdgjbbeijkmn
URL Oficial https://chromewebstore.google.com/detail/webmbed/gfbfkmmaicfmegknnopfbdgjbbeijkmn
Descripción Taking .webm urls and displaying the video inline
Tamaño del Archivo 1.33 MB
Cantidad de Instalaciones 37
Versión Actual 0.7.9
Última Actualización 2014-04-15
Fecha de Publicación 2014-04-14
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Valeyard
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "webmBed",
    "version": "0.7.9",
    "description": "Taking .webm urls and displaying the video inline",
    "icons": {
        "128": "images\/webmbed128.png",
        "16": "images\/webmbed16.png",
        "48": "images\/webmbed48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "matches": [
            ""
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_title": "webmBed",
        "default_icon": "images\/webmbed128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}