Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
Remove YouTube Annotations là gì?
Remove YouTube Annotations là một tiện ích mở rộng Chrome được phát triển bởi michaeljamore, và tính năng chính của nó là "This extension will remove all of the annoying annotations from YouTube videos.".
Tải xuống tệp CRX của tiện ích mở rộng Remove YouTube Annotations
Tải xuống các tệp mở rộng Remove YouTube Annotations dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
URL Chính Thức | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Mô tả | This extension will remove all of the annoying annotations from YouTube videos. |
Kích Thước Tệp | 3.73 KB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2015-11-08 |
Ngày Phát Hành | 2015-11-08 |
Đánh Giá | 3.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | michaeljamore |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://mjamore.com |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |