Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
什么是Remove YouTube Annotations?
Remove YouTube Annotations是由michaeljamore开发的Chrome扩展程序,该扩展的主要功能是“This extension will remove all of the annoying annotations from YouTube videos.”。
下载Remove YouTube Annotations扩展crx文件
下载Remove YouTube Annotations扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
官方URL | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
简介 | This extension will remove all of the annoying annotations from YouTube videos. |
文件大小 | 3.73 KB |
安装次数 | 33 |
当前版本 | 1.0 |
更新时间 | 2015-11-08 |
上架时间 | 2015-11-08 |
评分 | 3.67/5 共6次评分 |
开发者 | michaeljamore |
付费类型 | free |
扩展官网 | http://mjamore.com |
支持的语言 | 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\/*" ] } ] } |