Ad blocker
Removes the ads
ما هو Ad blocker؟
Ad blocker هو إضافة Chrome تم تطويرها بواسطة KarthiTech، والميزة الرئيسية لها هي "Removes the ads".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ad blocker
قم بتنزيل ملفات الامتداد Ad blocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a simple tool to remove advertisements in a web page. SWITCH ON or OFF the Ad blocker with a simple click. The number of advertisements blocked in a website, will be displayed over extension icon. Ad blocker will monitor a website periodically and remove the dynamically loaded advertisements.
معلومات أساسية عن التمديد
الاسم | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
الوصف | Removes the ads |
حجم الملف | 9.58 KB |
عدد التثبيتات | 6,452 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2021-09-13 |
تاريخ النشر | 2019-06-28 |
تقييم | 3.33/5 مجموع تقييمات 6 |
المطور | KarthiTech |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ad blocker", "description": "Removes the ads", "version": "1.0.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "incognito": "split", "browser_action": { "default_icon": "on.png", "default_title": "Remove the Ads" }, "background": { "scripts": [ "bm.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pm.js" ] } ] } |