Emojify Everything

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

Emojify Everything क्या है?

Emojify Everything jasonetco द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "There aren't enough emojis in your websites. This extension fixes that."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Emojify Everything एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}