Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
Vad är Remove YouTube Annotations?
Remove YouTube Annotations är en Chrome-tillägg utvecklad av michaeljamore, och dess huvudfunktion är "This extension will remove all of the annoying annotations from YouTube videos.".
Ladda ner Remove YouTube Annotations-förlängningens CRX-fil
Ladda ner Remove YouTube Annotations-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
Officiell webbadress | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Beskrivning | This extension will remove all of the annoying annotations from YouTube videos. |
Filstorlek | 3.73 KB |
Antal Installationer | 33 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-11-08 |
Publiceringsdatum | 2015-11-08 |
Betyg | 3.67/5 Totalt 6 Betyg |
Utvecklare | michaeljamore |
Betalningssätt | free |
Tilläggswebbplats | http://mjamore.com |
Stödda Språk | 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\/*" ] } ] } |