Badoo without ads
This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
ما هو Badoo without ads؟
Badoo without ads هو إضافة Chrome تم تطويرها بواسطة https://namata.ru، والميزة الرئيسية لها هي "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Badoo without ads
قم بتنزيل ملفات الامتداد Badoo without ads بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
معلومات أساسية عن التمديد
الاسم | Badoo without ads |
ID | negdlffpkdmjjjbeebnibofbkiclejkd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd |
الوصف | This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed. |
حجم الملف | 254 KB |
عدد التثبيتات | 147 |
النسخة الحالية | 1.5 |
آخر تحديث | 2020-07-08 |
تاريخ النشر | 2020-03-26 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://namata.ru |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://namata.ru/extensions/badoonoads |
عنوان صفحة المساعدة | http://namata.ru/support/thanksforinstall |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Badoo without ads", "description": "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.", "version": "1.5", "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.badoo.com\/*" ], "js": [ "main.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "*:\/\/*.badoo.com\/*" ] } |