Emoti
Emoti creates an easy-to-use dropdown menu for inserting emoticons.
Co to jest Emoti?
Emoti to rozszerzenie Chrome opracowane przez Andrew Pitts, a jego główną funkcją jest „Emoti creates an easy-to-use dropdown menu for inserting emoticons.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Emoti
Pobierz pliki rozszerzeń Emoti 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
Emoti is a chrome extension that allows users to easily save custom emoticons and insert them into text box inputs, such as Facebook status updates or tweets. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jhendcajfhhpnombbfdanbdkhifbaeee |
| Oficjalny URL | https://chromewebstore.google.com/detail/emoti/jhendcajfhhpnombbfdanbdkhifbaeee |
| Opis | Emoti creates an easy-to-use dropdown menu for inserting emoticons. |
| Rozmiar pliku | 25.31 KB |
| Liczba instalacji | 229 |
| Aktualna Wersja | 1.0.6 |
| Ostatnia Aktualizacja | 2017-06-17 |
| Data Publikacji | 2017-06-17 |
| Ocena | 5.00/5 Łącznie 7 Oceny |
| Deweloper | Andrew Pitts |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://apitts.com |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Emoti",
"description": "Emoti creates an easy-to-use dropdown menu for inserting emoticons.",
"version": "1.0.6",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_popup": "popup\/popup.html",
"default_title": "Emoti"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"activeTab",
"clipboardWrite",
"clipboardRead"
]
} | |