Emojify Everything
There aren't enough emojis in your websites. This extension fixes that.
Cos'è Emojify Everything?
Emojify Everything è un'estensione di Chrome sviluppata da jasonetco, e la sua funzione principale è "There aren't enough emojis in your websites. This extension fixes that.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Emojify Everything
Scarica i file di estensione Emojify Everything 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
Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.
Informazioni di Base sull'Estensione
Nome | Emojify Everything |
ID | hkahpmfkdfeceiiklfbkalcpbceccjco |
URL Ufficiale | https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco |
Descrizione | There aren't enough emojis in your websites. This extension fixes that. |
Dimensione del File | 36.48 KB |
Conteggio Installazioni | 39 |
Versione Corrente | 1.1.5 |
Ultimo Aggiornamento | 2017-03-19 |
Data di Pubblicazione | 2017-03-18 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | jasonetco |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/JasonEtco/emojify-everything |
URL della Pagina di Aiuto | https://github.com/JasonEtco/emojify-everything/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.1.5", "minimum_chrome_version": "49", "name": "Emojify Everything", "short_name": "Emojification", "description": "There aren't enough emojis in your websites. This extension fixes that.", "author": "Jason Etcovitch", "homepage_url": "https:\/\/github.com\/JasonEtco\/emojify-everything", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png", "default_title": "Emojify Everything", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "js": [ "js\/simpleEmojis.js", "js\/emojis.js", "main.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "chrome_style": true } } |