GitHub Emoji
A chrome extension for the github emoji picker with fun.
什么是GitHub Emoji?
GitHub Emoji是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension for the github emoji picker with fun.”。
扩展截图
下载GitHub Emoji扩展crx文件
下载GitHub Emoji扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
See https://github.com/FishPlusOrange/github-emoji for details.
扩展基本信息
名称 | GitHub Emoji |
ID | pfhcnffadoajdcedindnjcladkokgfpo |
官方URL | https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo |
简介 | A chrome extension for the github emoji picker with fun. |
文件大小 | 907 KB |
安装次数 | 37 |
当前版本 | 1.1.1 |
更新时间 | 2020-03-30 |
上架时间 | 2020-03-30 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Emoji", "version": "1.1.1", "manifest_version": 2, "description": "A chrome extension for the github emoji picker with fun.", "homepage_url": "https:\/\/github.com\/FishPlusOrange\/github-emoji", "icons": { "16": "images\/octocat.png", "48": "images\/octocat.png", "128": "images\/octocat.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*" ], "js": [ "scripts\/content-script.js" ], "run_at": "document_end" } ], "page_action": { "default_title": "GitHub Emoji", "default_popup": "popup.html" } } |