Emojify Everything
There aren't enough emojis in your websites. This extension fixes that.
Vad är Emojify Everything?
Emojify Everything är en Chrome-tillägg utvecklad av jasonetco, och dess huvudfunktion är "There aren't enough emojis in your websites. This extension fixes that.".
Tilläggsskärmbilder
Ladda ner Emojify Everything-förlängningens CRX-fil
Ladda ner Emojify Everything-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.
Grundläggande Information om Tillägg
Namn | Emojify Everything |
ID | hkahpmfkdfeceiiklfbkalcpbceccjco |
Officiell webbadress | https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco |
Beskrivning | There aren't enough emojis in your websites. This extension fixes that. |
Filstorlek | 36.48 KB |
Antal Installationer | 39 |
Aktuell Version | 1.1.5 |
Senast Uppdaterad | 2017-03-19 |
Publiceringsdatum | 2017-03-18 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | jasonetco |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/JasonEtco/emojify-everything |
Hjälpsida URL | https://github.com/JasonEtco/emojify-everything/issues |
Stödda Språk | 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 } } |