Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
Was ist Remove YouTube Annotations?
Remove YouTube Annotations ist eine Chrome-Erweiterung, die von michaeljamore entwickelt wurde, und ihr Hauptmerkmal ist "This extension will remove all of the annoying annotations from YouTube videos.".
Remove YouTube Annotations-Erweiterungs-CRX-Datei herunterladen
Laden Sie Remove YouTube Annotations-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
Offizielle URL | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Beschreibung | This extension will remove all of the annoying annotations from YouTube videos. |
Dateigröße | 3.73 KB |
Installationsanzahl | 33 |
Aktuelle Version | 1.0 |
Letztes Update | 2015-11-08 |
Veröffentlichungsdatum | 2015-11-08 |
Bewertung | 3.67/5 Insgesamt 6 Bewertungen |
Entwickler | michaeljamore |
Zahlungsart | free |
Erweiterungswebsite | http://mjamore.com |
Unterstützte Sprachen | 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\/*" ] } ] } |