Remove YouTube Annotations

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

Co to jest Remove YouTube Annotations?

Remove YouTube Annotations to rozszerzenie Chrome opracowane przez michaeljamore, a jego główną funkcją jest „This extension will remove all of the annoying annotations from YouTube videos.”.

Pobierz plik CRX rozszerzenia Remove YouTube Annotations

Pobierz pliki rozszerzeń Remove YouTube Annotations w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
Oficjalny URL https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Opis This extension will remove all of the annoying annotations from YouTube videos.
Rozmiar pliku 3.73 KB
Liczba instalacji 33
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-11-08
Data Publikacji 2015-11-08
Ocena 3.67/5 Łącznie 6 Oceny
Deweloper michaeljamore
Typ Płatności free
Strona Rozszerzenia http://mjamore.com
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}