Emojify Everything
There aren't enough emojis in your websites. This extension fixes that.
Hvad er Emojify Everything?
Emojify Everything er en Chrome-udvidelse udviklet af jasonetco, og dens hovedfunktion er "There aren't enough emojis in your websites. This extension fixes that.".
Udvidelsesskærmbilleder
Download Emojify Everything-udvidelses-CRX-fil
Download Emojify Everything-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.
Grundlæggende oplysninger om udvidelsen
Navn | Emojify Everything |
ID | hkahpmfkdfeceiiklfbkalcpbceccjco |
Officiel URL | https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco |
Beskrivelse | There aren't enough emojis in your websites. This extension fixes that. |
Filstørrelse | 36.48 KB |
Antal Installationer | 39 |
Nuværende Version | 1.1.5 |
Senest Opdateret | 2017-03-19 |
Udgivelsesdato | 2017-03-18 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | jasonetco |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/JasonEtco/emojify-everything |
Hjælpeside-URL | https://github.com/JasonEtco/emojify-everything/issues |
Understøttede Sprog | 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 } } |