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是由https://namata.ru開發的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擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |