Remove YouTube Annotations

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

Wat is Remove YouTube Annotations?

Remove YouTube Annotations is een Chrome-extensie ontwikkeld door michaeljamore, en de belangrijkste functie is "This extension will remove all of the annoying annotations from YouTube videos.".

Download het CRX-bestand van de extensie Remove YouTube Annotations

Download Remove YouTube Annotations-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
Officiële URL https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Beschrijving This extension will remove all of the annoying annotations from YouTube videos.
Bestandsgrootte 3.73 KB
Aantal Installaties 33
Huidige Versie 1.0
Laatst Bijgewerkt 2015-11-08
Publicatiedatum 2015-11-08
Beoordeling 3.67/5 Totaal 6 Beoordelingen
Ontwikkelaar michaeljamore
Betalingswijze free
Extensiewebsite http://mjamore.com
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}