AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

Qu'est-ce que AnnotationsOff ?

AnnotationsOff est une extension Chrome développée par http://leocardz.com, et sa fonction principale est "This extension removes all unwanted annotations and cards on YouTube videos".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension AnnotationsOff

Téléchargez les fichiers d'extension AnnotationsOff 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

                        This extension removes all unwanted annotations and cards on Youtube videos.                    

Informations de Base sur l'Extension

Nom AnnotationsOff AnnotationsOff
ID gpifenckpeaielkgcbakjanpdppfnapn
URL Officiel https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn
Description This extension removes all unwanted annotations and cards on YouTube videos
Taille du Fichier 49.03 KB
Nombre d'Installations 44
Version Actuelle 1.3
Dernière Mise à Jour 2015-04-07
Date de Publication 2015-04-07
Évaluation 4.00/5 Total 4 Évaluations
Développeur http://leocardz.com
Type de Paiement free
Site Web de l'Extension http://lab.leocardz.com/annotationsoff
URL de la Page d'Aide https://github.com/LeonardoCardoso/AnnotationsOff/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AnnotationsOff",
    "description": "This extension removes all unwanted annotations and cards on YouTube videos",
    "version": "1.3",
    "background": {
        "persistent": false,
        "scripts": [
            "annotationsOff.js",
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "annotationsOff.js",
                "popup.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}