Emojify Everything

There aren't enough emojis in your websites. This extension fixes that.

Was ist Emojify Everything?

Emojify Everything ist eine Chrome-Erweiterung, die von jasonetco entwickelt wurde, und ihr Hauptmerkmal ist "There aren't enough emojis in your websites. This extension fixes that.".

Erweiterungsscreenshots

screenshot

Emojify Everything-Erweiterungs-CRX-Datei herunterladen

Laden Sie Emojify Everything-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.                    

Grundlegende Informationen zur Erweiterung

Name Emojify Everything Emojify Everything
ID hkahpmfkdfeceiiklfbkalcpbceccjco
Offizielle URL https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco
Beschreibung There aren't enough emojis in your websites. This extension fixes that.
Dateigröße 36.48 KB
Installationsanzahl 39
Aktuelle Version 1.1.5
Letztes Update 2017-03-19
Veröffentlichungsdatum 2017-03-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler jasonetco
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/JasonEtco/emojify-everything
Hilfeseite URL https://github.com/JasonEtco/emojify-everything/issues
Unterstützte Sprachen 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
    }
}