Chromoji - Emojis for Google Chrome
Display emojis in Chrome
Apa itu Chromoji - Emojis for Google Chrome?
Chromoji - Emojis for Google Chrome adalah ekstensi Chrome yang dikembangkan oleh ahmedsohag3283, dan fitur utamanya adalah "Display emojis in Chrome".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chromoji - Emojis for Google Chrome
Unduh file ekstensi Chromoji - Emojis for Google Chrome dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Show emojis in your browser. Currently supports Twitter, EmojiOne, Apple and Google emojis. Create post facebook and twitter with your emojis
Informasi Dasar Ekstensi
Nama | Chromoji - Emojis for Google Chrome |
ID | negakbijaemdgbhklopmghphgaeadmpo |
URL Resmi | https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo |
Deskripsi | Display emojis in Chrome |
Ukuran File | 26.12 MB |
Jumlah Instalasi | 20,000 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2024-01-09 |
Tanggal Publikasi | 2016-10-26 |
Penilaian | 3.89/5 Total 146 Penilaian |
Pengembang | ahmedsohag3283 |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://sites.google.com/view/privacy-policy-of-chromoji/home |
Bahasa yang Didukung | 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:\/\/*\/*" ] } ] } |