Emojify

Emojify is an extension that let's you view and input Emojis in chrome on webpages! How to enter emojis: Click Emojify's button in…

Τι είναι το Emojify;

Το Emojify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://justin.loutsenhizer.com, και η κύρια λειτουργία του είναι "Emojify is an extension that let's you view and input Emojis in chrome on webpages! How to enter emojis: Click Emojify's button in…".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Emojify is an extension that let's you view and input Emojis in chrome on webpages!

How to enter emojis:
Click Emojify's button in chrome's extension area and the emoji keyboard will pop up inside the webpage you're currently browsing. Click on the different emoji buttons and they will be typed into whatever text field you currently are typing in. This feature is currently in beta and will likely have bugs

How it works:
Emojify parses the content of websites as you browse and automatically renders emojis on the page as they show up. Simply install the extension and you can forget it's even there!

Furthermore this uses the lovely google hangouts emoji set for an aesthetically pleasing experience!

Changelog
1.8:
-emojis are now parsed inside all frames
-fixed up support on mightytext.net
-added first rendition of emojify's emoji keyboard! This will be iterated upon in future versions
1.7:
-misc changes
1.6:
-no longer hotlinking emojis (faster rendering)
-added proper rendering of the keycap emojis
-added support for some more missing softbank emojis
-when on mightytext.net the hangouts emojis will show instead of the iOS ones
1.5:
-fixed a handful of SoftBank emojis
1.4:
-disabled rendering on textfields since that doesn't work
-diversified namespace to reduce risk of collision
-improved page change listening. Should work better on websites like instagram
1.3:
-disabled the rendering of some special symbols
1.2:
-huge mistake causing all emojis to disappear fixed
1.1:
-fixed issue where some emojis wouldn't be parsed
1.0:
-first release                    

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

Όνομα Emojify Emojify
ID lpkndkffkmhcdkkdmeeelikmadjjmebe
Επίσημο URL https://chromewebstore.google.com/detail/emojify/lpkndkffkmhcdkkdmeeelikmadjjmebe
Περιγραφή Emojify is an extension that let's you view and input Emojis in chrome on webpages! How to enter emojis: Click Emojify's button in…
Μέγεθος Αρχείου 1.57 MB
Αριθμός Εγκαταστάσεων 4,958
Τρέχουσα Έκδοση 1.8
Τελευταία Ενημέρωση 2013-10-09
Ημερομηνία Δημοσίευσης 2013-10-08
Αξιολόγηση 3.13/5 Συνολικά 360 Αξιολογήσεις
Προγραμματιστής https://justin.loutsenhizer.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Emojify",
    "version": "1.8",
    "manifest_version": 2,
    "icons": {
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "css\/emoji.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/emoji.js",
                "js\/emojify.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "js\/emojiKeyboard.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/emoji\/*",
        "js\/keyboard.html",
        "css\/keyboard.css"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Show Emoji Keyboard"
    },
    "background": {
        "scripts": [
            "js\/backgroundscript.js"
        ]
    }
}