Bitmoji
Use Bitmoji anywhere on web!
什麼是Bitmoji?
Bitmoji是由https://bitmoji.com開發的Chrome擴展程式,該擴展的主要功能是“Use Bitmoji anywhere on web!”。
擴展截圖
下載Bitmoji擴展crx文件
下載Bitmoji擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- Directly insert Bitmojis into Gmail - Click and drag to resize them - Copy and paste them almost anywhere If you don’t have a Bitmoji account, download the mobile app from bitmoji.com and create an avatar now! Need help? Head to https://support.bitmoji.com/hc/en-us
擴展基本資訊
名稱 | Bitmoji |
ID | bfgdeiadkckfbkeigkoncpdieiiefpig |
官方網址 | https://chromewebstore.google.com/detail/bitmoji/bfgdeiadkckfbkeigkoncpdieiiefpig |
簡介 | Use Bitmoji anywhere on web! |
檔案大小 | 1.45 MB |
安裝次數 | 5,328,376 |
目前版本 | 10.31.1247 |
更新時間 | 2022-01-21 |
上架時間 | 2020-04-22 |
評分 | 3.71/5 共 2093 次評分 |
開發者 | https://bitmoji.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.bitmoji.com/ |
說明頁面URL | https://support.bitmoji.com/hc/en-us/articles/360001494066-Bitmoji-Chrome-Extension |
隱私政策頁面URL | https://www.snap.com/en-US/privacy/privacy-policy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bitmoji", "short_name": "Bitmoji", "description": "Use Bitmoji anywhere on web!", "version": "10.31.1247", "icons": { "48": "images\/bitmoji-logo-48.png", "128": "images\/bitmoji-logo-128.png" }, "permissions": [ "storage", "cookies", "clipboardWrite", "webRequest", "webRequestBlocking", "webNavigation", "*:\/\/mail.google.com\/*", "*:\/\/*.bitbucket.org\/*", "*:\/\/*.github.com\/*", "*:\/\/*.atlassian.net\/*", "*:\/\/*.bitmoji.com\/*" ], "background": { "scripts": [ "dist\/chrome-extension-background.js" ], "persistent": true }, "browser_action": { "default_icon": { "19": "images\/bitmoji-icon-19.png", "38": "images\/bitmoji-icon-38.png" }, "default_popup": "popup.html" }, "externally_connectable": { "matches": [ "https:\/\/test.bitmoji.com\/account_v2\/*", "https:\/\/www.bitmoji.com\/account_v2\/*" ] }, "web_accessible_resources": [ "static\/media\/*.svg", "static\/media\/*.png", "popup.html" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/bitbucket.org\/*", "https:\/\/*.github.com\/*", "https:\/\/*.atlassian.net\/*", "*:\/\/*.bitmoji.com\/*" ], "js": [ "thirdparty\/jquery.min.js", "thirdparty\/sweetalert.min.js", "thirdparty\/webpicker-sdk.js", "dist\/bitmoji-chrome-extension.js", "dist\/chrome-extension-page-detector.js" ], "css": [ "thirdparty\/webpicker-sdk.css", "dist\/chrome-extension.css" ], "run_at": "document_end" } ] } |