Emojify Everything

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

Τι είναι το Emojify Everything;

Το Emojify Everything είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jasonetco, και η κύρια λειτουργία του είναι "There aren't enough emojis in your websites. This extension fixes that.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Emojify Everything

Λήψη αρχείων επέκτασης Emojify Everything σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Emojify Everything Emojify Everything
ID hkahpmfkdfeceiiklfbkalcpbceccjco
Επίσημο URL https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco
Περιγραφή There aren't enough emojis in your websites. This extension fixes that.
Μέγεθος Αρχείου 36.48 KB
Αριθμός Εγκαταστάσεων 39
Τρέχουσα Έκδοση 1.1.5
Τελευταία Ενημέρωση 2017-03-19
Ημερομηνία Δημοσίευσης 2017-03-18
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής jasonetco
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/JasonEtco/emojify-everything
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/JasonEtco/emojify-everything/issues
Υποστηριζόμενες Γλώσσες 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
    }
}