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.
Qu'est-ce que Badoo without ads ?
Badoo without ads est une extension Chrome développée par https://namata.ru, et sa fonction principale est "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Badoo without ads
Téléchargez les fichiers d'extension Badoo without ads au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Informations de Base sur l'Extension
Nom | Badoo without ads |
ID | negdlffpkdmjjjbeebnibofbkiclejkd |
URL Officiel | https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd |
Description | This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed. |
Taille du Fichier | 254 KB |
Nombre d'Installations | 147 |
Version Actuelle | 1.5 |
Dernière Mise à Jour | 2020-07-08 |
Date de Publication | 2020-03-26 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://namata.ru |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://namata.ru/extensions/badoonoads |
URL de la Page d'Aide | http://namata.ru/support/thanksforinstall |
Langues Prises en Charge | 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\/*" ] } |