Emojify Everything

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

什么是Emojify Everything?

Emojify Everything是由jasonetco开发的Chrome扩展程序,该扩展的主要功能是“There aren't enough emojis in your websites. This extension fixes that.”。

扩展截图

screenshot

下载Emojify Everything扩展crx文件

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