Image and Video Remover
You will find NO images or videos on the pages you view as long as this extension is activated.
ما هو Image and Video Remover؟
Image and Video Remover هو إضافة Chrome تم تطويرها بواسطة Cary Stothart، والميزة الرئيسية لها هي "You will find NO images or videos on the pages you view as long as this extension is activated.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Image and Video Remover
قم بتنزيل ملفات الامتداد Image and Video Remover بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Removes all images and videos on the websites you view. Useful for viewing websites containing images or videos you find offensive. For example, this extension would be useful for arachnophobic users who want to read about spiders but who do not want to be bombarded with pictures or videos of spiders.
معلومات أساسية عن التمديد
الاسم | |
ID | cceldmeigcfcpamajgnlapepcocegjce |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce |
الوصف | You will find NO images or videos on the pages you view as long as this extension is activated. |
حجم الملف | 646 KB |
عدد التثبيتات | 19 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2020-12-24 |
تاريخ النشر | 2020-12-24 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Cary Stothart |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image and Video Remover", "version": "1.0.0", "description": "You will find NO images or videos on the pages you view as long as this extension is activated.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "css": [ "pageConcealer.css" ], "js": [ "pageConcealer.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "removeMedia.js" ], "all_frames": true } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2 } |