AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

Co je AnnotationsOff?

AnnotationsOff je rozšíření Chrome vyvinuté http://leocardz.com, a jeho hlavní funkcí je „This extension removes all unwanted annotations and cards on YouTube videos“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření AnnotationsOff

Stáhněte si soubory rozšíření AnnotationsOff ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název AnnotationsOff AnnotationsOff
ID gpifenckpeaielkgcbakjanpdppfnapn
Oficiální URL https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn
Popis This extension removes all unwanted annotations and cards on YouTube videos
Velikost souboru 49.03 KB
Počet instalací 44
Aktuální Verze 1.3
Poslední Aktualizace 2015-04-07
Datum Vydání 2015-04-07
Hodnocení 4.00/5 Celkem 4 Hodnocení
Vývojář http://leocardz.com
Typ Platby free
Webové stránky Rozšíření http://lab.leocardz.com/annotationsoff
URL Stránky Nápovědy https://github.com/LeonardoCardoso/AnnotationsOff/issues
Podporované Jazyky 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:\/\/*\/*"
    ]
}