AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

Wat is AnnotationsOff?

AnnotationsOff is een Chrome-extensie ontwikkeld door http://leocardz.com, en de belangrijkste functie is "This extension removes all unwanted annotations and cards on YouTube videos".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie AnnotationsOff

Download AnnotationsOff-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

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

Basisinformatie over de Extensie

Naam AnnotationsOff AnnotationsOff
ID gpifenckpeaielkgcbakjanpdppfnapn
Officiële URL https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn
Beschrijving This extension removes all unwanted annotations and cards on YouTube videos
Bestandsgrootte 49.03 KB
Aantal Installaties 44
Huidige Versie 1.3
Laatst Bijgewerkt 2015-04-07
Publicatiedatum 2015-04-07
Beoordeling 4.00/5 Totaal 4 Beoordelingen
Ontwikkelaar http://leocardz.com
Betalingswijze free
Extensiewebsite http://lab.leocardz.com/annotationsoff
Help Pagina-URL https://github.com/LeonardoCardoso/AnnotationsOff/issues
Ondersteunde Talen 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:\/\/*\/*"
    ]
}