AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
ما هو AnnotationsOff؟
AnnotationsOff هو إضافة Chrome تم تطويرها بواسطة http://leocardz.com، والميزة الرئيسية لها هي "This extension removes all unwanted annotations and cards on YouTube videos".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AnnotationsOff
قم بتنزيل ملفات الامتداد AnnotationsOff بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension removes all unwanted annotations and cards on Youtube videos. معلومات أساسية عن التمديد
| الاسم | |
| ID | gpifenckpeaielkgcbakjanpdppfnapn |
| عنوان URL الرسمي | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
| الوصف | This extension removes all unwanted annotations and cards on YouTube videos |
| حجم الملف | 49.03 KB |
| عدد التثبيتات | 44 |
| النسخة الحالية | 1.3 |
| آخر تحديث | 2015-04-07 |
| تاريخ النشر | 2015-04-07 |
| تقييم | 4.00/5 مجموع تقييمات 4 |
| المطور | http://leocardz.com |
| نوع الدفع | free |
| موقع الإضافة | http://lab.leocardz.com/annotationsoff |
| عنوان صفحة المساعدة | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AnnotationsOff",
"description": "This extension removes all unwanted annotations and cards on YouTube videos",
"version": "1.3",
"background": {
"persistent": false,
"scripts": [
"annotationsOff.js",
"background.js"
]
},
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"jquery.min.js",
"annotationsOff.js",
"popup.js"
]
}
],
"permissions": [
"tabs",
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |