Hangouts GitHub Emojifier

Converts Emoji on GitHub to Google-style Emoji

什麼是Hangouts GitHub Emojifier?

Hangouts GitHub Emojifier是由Paul Betts開發的Chrome擴展程式,該擴展的主要功能是“Converts Emoji on GitHub to Google-style Emoji”。

擴展截圖

screenshot
screenshot

下載Hangouts GitHub Emojifier擴展crx文件

下載Hangouts GitHub Emojifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This Extension works on GitHub.com to replace all of their Apple-style Emoji with Google-style Emoji.                    

擴展基本資訊

名稱 Hangouts GitHub Emojifier Hangouts GitHub Emojifier
ID gnmkclfcadpmdkbihlgdebnnlolabgll
官方網址 https://chromewebstore.google.com/detail/hangouts-github-emojifier/gnmkclfcadpmdkbihlgdebnnlolabgll
簡介 Converts Emoji on GitHub to Google-style Emoji
檔案大小 24.28 KB
安裝次數 176
目前版本 0.1.0
更新時間 2015-03-08
上架時間 2015-03-07
評分 4.00/5 共 4 次評分
開發者 Paul Betts
付費類型 free
擴展官網 https://github.com/paulcbetts/github-emoji-switcher
說明頁面URL https://github.com/paulcbetts/github-emoji-switcher/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts GitHub Emojifier",
    "description": "Converts Emoji on GitHub to Google-style Emoji",
    "version": "0.1.0",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "http:\/\/*.github.com\/*",
        "https:\/\/*.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "scripts\/main.min.js"
            ]
        }
    ]
}