Emojify Everything
There aren't enough emojis in your websites. This extension fixes that.
Co to jest Emojify Everything?
Emojify Everything to rozszerzenie Chrome opracowane przez jasonetco, a jego główną funkcją jest „There aren't enough emojis in your websites. This extension fixes that.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Emojify Everything
Pobierz pliki rozszerzeń Emojify Everything w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.
Podstawowe informacje o rozszerzeniu
Nazwa | Emojify Everything |
ID | hkahpmfkdfeceiiklfbkalcpbceccjco |
Oficjalny URL | https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco |
Opis | There aren't enough emojis in your websites. This extension fixes that. |
Rozmiar pliku | 36.48 KB |
Liczba instalacji | 39 |
Aktualna Wersja | 1.1.5 |
Ostatnia Aktualizacja | 2017-03-19 |
Data Publikacji | 2017-03-18 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | jasonetco |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/JasonEtco/emojify-everything |
Adres URL Strony Pomocy | https://github.com/JasonEtco/emojify-everything/issues |
Obsługiwane Języki | 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 } } |