Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
Cos'è Remove YouTube Annotations?
Remove YouTube Annotations è un'estensione di Chrome sviluppata da michaeljamore, e la sua funzione principale è "This extension will remove all of the annoying annotations from YouTube videos.".
Scarica il file CRX dell'estensione Remove YouTube Annotations
Scarica i file di estensione Remove YouTube Annotations in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
URL Ufficiale | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Descrizione | This extension will remove all of the annoying annotations from YouTube videos. |
Dimensione del File | 3.73 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-11-08 |
Data di Pubblicazione | 2015-11-08 |
Valutazione | 3.67/5 Totale 6 Valutazioni |
Sviluppatore | michaeljamore |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://mjamore.com |
Lingue Supportate | 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\/*" ] } ] } |