Bitmoji
Use Bitmoji anywhere on web!
Cos'è Bitmoji?
Bitmoji è un'estensione di Chrome sviluppata da https://bitmoji.com, e la sua funzione principale è "Use Bitmoji anywhere on web!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bitmoji
Scarica i file di estensione Bitmoji in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
- 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
Informazioni di Base sull'Estensione
Nome | Bitmoji |
ID | bfgdeiadkckfbkeigkoncpdieiiefpig |
URL Ufficiale | https://chromewebstore.google.com/detail/bitmoji/bfgdeiadkckfbkeigkoncpdieiiefpig |
Descrizione | Use Bitmoji anywhere on web! |
Dimensione del File | 1.45 MB |
Conteggio Installazioni | 5,328,376 |
Versione Corrente | 10.31.1247 |
Ultimo Aggiornamento | 2022-01-21 |
Data di Pubblicazione | 2020-04-22 |
Valutazione | 3.71/5 Totale 2093 Valutazioni |
Sviluppatore | https://bitmoji.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.bitmoji.com/ |
URL della Pagina di Aiuto | https://support.bitmoji.com/hc/en-us/articles/360001494066-Bitmoji-Chrome-Extension |
URL della Pagina della Politica sulla Privacy | https://www.snap.com/en-US/privacy/privacy-policy |
Lingue Supportate | 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" } ] } |