Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
What is Remove YouTube Annotations?
Remove YouTube Annotations is a Chrome extension developed by michaeljamore, and its main feature is "This extension will remove all of the annoying annotations from YouTube videos.".
Download Remove YouTube Annotations Extension CRX File
Download Remove YouTube Annotations extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
Official URL | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Description | This extension will remove all of the annoying annotations from YouTube videos. |
File Size | 3.73 KB |
Installation Count | 33 |
Current Version | 1.0 |
Last Updated | 2015-11-08 |
Publish Date | 2015-11-08 |
Rating | 3.67/5 Total 6 Ratings |
Developer | michaeljamore |
Payment Type | free |
Extension Website | http://mjamore.com |
Supported Languages | 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\/*" ] } ] } |