Chromoji - Emojis for Google Chrome
Display emojis in Chrome
Cos'è Chromoji - Emojis for Google Chrome?
Chromoji - Emojis for Google Chrome è un'estensione di Chrome sviluppata da ahmedsohag3283, e la sua funzione principale è "Display emojis in Chrome".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chromoji - Emojis for Google Chrome
Scarica i file di estensione Chromoji - Emojis for Google Chrome 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
Show emojis in your browser. Currently supports Twitter, EmojiOne, Apple and Google emojis. Create post facebook and twitter with your emojis
Informazioni di Base sull'Estensione
Nome | Chromoji - Emojis for Google Chrome |
ID | negakbijaemdgbhklopmghphgaeadmpo |
URL Ufficiale | https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo |
Descrizione | Display emojis in Chrome |
Dimensione del File | 26.12 MB |
Conteggio Installazioni | 20,000 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2024-01-09 |
Data di Pubblicazione | 2016-10-26 |
Valutazione | 3.89/5 Totale 146 Valutazioni |
Sviluppatore | ahmedsohag3283 |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://sites.google.com/view/privacy-policy-of-chromoji/home |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Display emojis in Chrome", "version": "1.1.0", "manifest_version": 3, "name": "Chromoji - Emojis for Google Chrome", "icons": { "16": "data\/images\/icon-16.png", "48": "data\/images\/icon-48.png", "128": "data\/images\/icon-128.png" }, "action": { "default_popup": "popup.html?chrome", "default_title": "Open" }, "options_ui": { "open_in_tab": true, "page": "options.html" }, "background": { "service_worker": "background-wrapper.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.bundle.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage", "declarativeNetRequest" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "data\/images\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |