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.
Apa itu Badoo without ads?
Badoo without ads adalah ekstensi Chrome yang dikembangkan oleh https://namata.ru, dan fitur utamanya adalah "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Badoo without ads
Unduh file ekstensi Badoo without ads dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Informasi Dasar Ekstensi
Nama | Badoo without ads |
ID | negdlffpkdmjjjbeebnibofbkiclejkd |
URL Resmi | https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd |
Deskripsi | This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed. |
Ukuran File | 254 KB |
Jumlah Instalasi | 147 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2020-07-08 |
Tanggal Publikasi | 2020-03-26 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | https://namata.ru |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://namata.ru/extensions/badoonoads |
URL Halaman Bantuan | http://namata.ru/support/thanksforinstall |
Bahasa yang Didukung | 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\/*" ] } |