Remove YouTube Annotations

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

Qu'est-ce que Remove YouTube Annotations ?

Remove YouTube Annotations est une extension Chrome développée par michaeljamore, et sa fonction principale est "This extension will remove all of the annoying annotations from YouTube videos.".

Télécharger le fichier CRX de l'extension Remove YouTube Annotations

Téléchargez les fichiers d'extension Remove YouTube Annotations au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
URL Officiel https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Description This extension will remove all of the annoying annotations from YouTube videos.
Taille du Fichier 3.73 KB
Nombre d'Installations 33
Version Actuelle 1.0
Dernière Mise à Jour 2015-11-08
Date de Publication 2015-11-08
Évaluation 3.67/5 Total 6 Évaluations
Développeur michaeljamore
Type de Paiement free
Site Web de l'Extension http://mjamore.com
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}