Emojify Everything

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

Apa itu Emojify Everything?

Emojify Everything adalah ekstensi Chrome yang dikembangkan oleh jasonetco, dan fitur utamanya adalah "There aren't enough emojis in your websites. This extension fixes that.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Emojify Everything

Unduh file ekstensi Emojify Everything dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Emojify Everything Emojify Everything
ID hkahpmfkdfeceiiklfbkalcpbceccjco
URL Resmi https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco
Deskripsi There aren't enough emojis in your websites. This extension fixes that.
Ukuran File 36.48 KB
Jumlah Instalasi 39
Versi Saat Ini 1.1.5
Terakhir Diperbarui 2017-03-19
Tanggal Publikasi 2017-03-18
Penilaian 5.00/5 Total 2 Penilaian
Pengembang jasonetco
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/JasonEtco/emojify-everything
URL Halaman Bantuan https://github.com/JasonEtco/emojify-everything/issues
Bahasa yang Didukung 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
    }
}