Remove YouTube Annotations

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

Hvad er Remove YouTube Annotations?

Remove YouTube Annotations er en Chrome-udvidelse udviklet af michaeljamore, og dens hovedfunktion er "This extension will remove all of the annoying annotations from YouTube videos.".

Download Remove YouTube Annotations-udvidelses-CRX-fil

Download Remove YouTube Annotations-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
Officiel URL https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Beskrivelse This extension will remove all of the annoying annotations from YouTube videos.
Filstørrelse 3.73 KB
Antal Installationer 33
Nuværende Version 1.0
Senest Opdateret 2015-11-08
Udgivelsesdato 2015-11-08
Bedømmelse 3.67/5 Samlet 6 Bedømmelser
Udvikler michaeljamore
Betalingsmetode free
Udvidelseswebsted http://mjamore.com
Understøttede Sprog 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\/*"
            ]
        }
    ]
}