Chromoji - Emojis for Google Chrome
Display emojis in Chrome
Wat is Chromoji - Emojis for Google Chrome?
Chromoji - Emojis for Google Chrome is een Chrome-extensie ontwikkeld door ahmedsohag3283, en de belangrijkste functie is "Display emojis in Chrome".
Extensie Screenshots
Download het CRX-bestand van de extensie Chromoji - Emojis for Google Chrome
Download Chromoji - Emojis for Google Chrome-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Show emojis in your browser. Currently supports Twitter, EmojiOne, Apple and Google emojis. Create post facebook and twitter with your emojis
Basisinformatie over de Extensie
Naam | Chromoji - Emojis for Google Chrome |
ID | negakbijaemdgbhklopmghphgaeadmpo |
Officiële URL | https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo |
Beschrijving | Display emojis in Chrome |
Bestandsgrootte | 26.12 MB |
Aantal Installaties | 20,000 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2024-01-09 |
Publicatiedatum | 2016-10-26 |
Beoordeling | 3.89/5 Totaal 146 Beoordelingen |
Ontwikkelaar | ahmedsohag3283 |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://sites.google.com/view/privacy-policy-of-chromoji/home |
Ondersteunde Talen | 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:\/\/*\/*" ] } ] } |