Remove YouTube Annotations

This extension will remove all of the annoying annotations from YouTube videos.

¿Qué es Remove YouTube Annotations?

Remove YouTube Annotations es una extensión de Chrome desarrollada por michaeljamore, y su función principal es "This extension will remove all of the annoying annotations from YouTube videos.".

Descargar Archivo CRX de la Extensión Remove YouTube Annotations

Descarga archivos de extensión Remove YouTube Annotations 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

                        Annotations are those annoying popups that you see on top of YouTube videos.  They are distracting and it's inconvenient to close them as they popup while you're watching a video.  This extension automatically removes them for you, creating a distraction free viewing experience.                    

Información Básica de la Extensión

Nombre Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
URL Oficial https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Descripción This extension will remove all of the annoying annotations from YouTube videos.
Tamaño del Archivo 3.73 KB
Cantidad de Instalaciones 33
Versión Actual 1.0
Última Actualización 2015-11-08
Fecha de Publicación 2015-11-08
Calificación 3.67/5 Total de 6 Calificaciones
Desarrollador michaeljamore
Tipo de Pago free
Sitio Web de la Extensión http://mjamore.com
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove YouTube Annotations",
    "description": "This extension will remove all of the annoying annotations from YouTube videos.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "close.png",
        "default_title": "Remove YouTube Annotations"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}