Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
O que é Remove YouTube Annotations?
Remove YouTube Annotations é uma extensão do Chrome desenvolvida por michaeljamore, e sua principal característica é "This extension will remove all of the annoying annotations from YouTube videos.".
Baixar o arquivo CRX da Extensão Remove YouTube Annotations
Baixe arquivos de extensão Remove YouTube Annotations no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
URL Oficial | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Descrição | This extension will remove all of the annoying annotations from YouTube videos. |
Tamanho do Arquivo | 3.73 KB |
Contagem de Instalações | 33 |
Versão Atual | 1.0 |
Última Atualização | 2015-11-08 |
Data de Publicação | 2015-11-08 |
Classificação | 3.67/5 Total de 6 Avaliações |
Desenvolvedor | michaeljamore |
Tipo de Pagamento | free |
Site da Extensão | http://mjamore.com |
Idiomas Suportados | 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\/*" ] } ] } |