AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

Cos'è AnnotationsOff?

AnnotationsOff è un'estensione di Chrome sviluppata da http://leocardz.com, e la sua funzione principale è "This extension removes all unwanted annotations and cards on YouTube videos".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AnnotationsOff

Scarica i file di estensione AnnotationsOff in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome AnnotationsOff AnnotationsOff
ID gpifenckpeaielkgcbakjanpdppfnapn
URL Ufficiale https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn
Descrizione This extension removes all unwanted annotations and cards on YouTube videos
Dimensione del File 49.03 KB
Conteggio Installazioni 44
Versione Corrente 1.3
Ultimo Aggiornamento 2015-04-07
Data di Pubblicazione 2015-04-07
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore http://leocardz.com
Tipo di Pagamento free
Sito Web dell'Estensione http://lab.leocardz.com/annotationsoff
URL della Pagina di Aiuto https://github.com/LeonardoCardoso/AnnotationsOff/issues
Lingue Supportate 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:\/\/*\/*"
    ]
}