waboxapp
waboxapp.com - Connect with your IM accounts
什麼是waboxapp?
waboxapp是由waboxapp開發的Chrome擴展程式,該擴展的主要功能是“waboxapp.com - Connect with your IM accounts”。
擴展截圖
下載waboxapp擴展crx文件
下載waboxapp擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions.
擴展基本資訊
名稱 | waboxapp |
ID | mgaecjklgnbkkdfnfpncgnogplnjjcdh |
官方網址 | https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh |
簡介 | waboxapp.com - Connect with your IM accounts |
檔案大小 | 23.77 KB |
安裝次數 | 15,386 |
目前版本 | 3.5.3 |
更新時間 | 2022-02-28 |
上架時間 | 2020-06-05 |
評分 | 2.76/5 共 42 次評分 |
開發者 | waboxapp |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.waboxapp.com |
隱私政策頁面URL | https://www.waboxapp.com/terms |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "waboxapp", "version": "3.5.3", "description": "waboxapp.com - Connect with your IM accounts", "browser_action": { "default_icon": "icon48_off.png", "default_popup": "settings_popup.html", "default_title": "waboxapp" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "config.js", "script.js" ], "run_at": "document_end" } ], "options_page": "settings.html", "web_accessible_resources": [ "client.js" ], "background": { "scripts": [ "config.js", "background.js" ], "persistent": true }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*.whatsapp.*\/*", "https:\/\/*.whatsapp.*\/*" ] } |