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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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\/*" ] } |