Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
ما هو Remove YouTube Annotations؟
Remove YouTube Annotations هو إضافة Chrome تم تطويرها بواسطة michaeljamore، والميزة الرئيسية لها هي "This extension will remove all of the annoying annotations from YouTube videos.".
تحميل ملف CRX للإضافة Remove YouTube Annotations
قم بتنزيل ملفات الامتداد Remove YouTube Annotations بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |