QuieNet

Stop Ynet's annoying video auto-play

¿Qué es QuieNet?

QuieNet es una extensión de Chrome desarrollada por Eran, y su función principal es "Stop Ynet's annoying video auto-play".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión QuieNet

Descarga archivos de extensión QuieNet 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

                        Ynet is a great site, but the auto-playing embedded videos can be extremely annoying. For some reasons, the site designers overlook or ignore the fact that people use tabs these days, and one might open a bunch of tabs before reviewing each one of the pages. When this is done, multiple pages start to play their content, creating a disturbing noise.

QuieNet is a Chrome extension that prevents videos from being automatically played. The extension hooks Ynet pages, and replaces media player with a stub. When the stub is clicked by the user, the original player is restored, and the video is played.

New in version 2.0
===================
* Video autoplay is cleanly prevented, without replacing the video player.
* Autoplay is prevented even if player is not the first one on the page.                    

Información Básica de la Extensión

Nombre QuieNet QuieNet
ID dalffmmkadmfpfagclclkagdigdjnhae
URL Oficial https://chromewebstore.google.com/detail/quienet/dalffmmkadmfpfagclclkagdigdjnhae
Descripción Stop Ynet's annoying video auto-play
Tamaño del Archivo 94.15 KB
Cantidad de Instalaciones 97
Versión Actual 2.0
Última Actualización 2014-08-01
Fecha de Publicación 2014-08-01
Calificación 4.30/5 Total de 10 Calificaciones
Desarrollador Eran
Tipo de Pago free
Sitio Web de la Extensión https://quienet.codeplex.com/
URL de la Página de Ayuda https://quienet.codeplex.com/
Idiomas Soportados iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuieNet",
    "short_name": "QuieNet",
    "description": "Stop Ynet's annoying video auto-play",
    "version": "2.0",
    "icons": {
        "16": "QuieNet16.png",
        "48": "QuieNet48.png",
        "128": "QuieNet128.png"
    },
    "browser_action": {
        "default_icon": "QuieNet48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "http:\/\/www.ynet.co.il\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.ynet.co.il\/*"
            ],
            "js": [
                "jquery-2.1.1.js",
                "video_handler.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/www.ynet.co.il\/*"
            ],
            "js": [
                "jquery-2.1.1.js",
                "live_handler.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}