Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
Co je Remove YouTube Annotations?
Remove YouTube Annotations je rozšíření Chrome vyvinuté michaeljamore, a jeho hlavní funkcí je „This extension will remove all of the annoying annotations from YouTube videos.“.
Stáhnout soubor CRX rozšíření Remove YouTube Annotations
Stáhněte si soubory rozšíření Remove YouTube Annotations 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í
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.
Základní Informace o Rozšíření
Název | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
Oficiální URL | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Popis | This extension will remove all of the annoying annotations from YouTube videos. |
Velikost souboru | 3.73 KB |
Počet instalací | 33 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2015-11-08 |
Datum Vydání | 2015-11-08 |
Hodnocení | 3.67/5 Celkem 6 Hodnocení |
Vývojář | michaeljamore |
Typ Platby | free |
Webové stránky Rozšíření | http://mjamore.com |
Podporované Jazyky | 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\/*" ] } ] } |