HipChat Emot
Add a list of available HipChat emoticons for easy use as well as some nice hot keys.
什麼是HipChat Emot?
HipChat Emot是由Jonathan Gertig開發的Chrome擴展程式,該擴展的主要功能是“Add a list of available HipChat emoticons for easy use as well as some nice hot keys.”。
擴展截圖
下載HipChat Emot擴展crx文件
下載HipChat Emot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Add a list of available HipChat emoticons to the Hipchat web app for easy use as well as some nice hot keys. It is open source on Github at github.com/jcgertig/hipchat-emot
Update:
Now using sync storage never be redirected again! Well once :). To update emots in storage you can go to hipchat-emoticons.nyh.name checkout the author at henrik.nyh.se
Enter to submit or shift enter for new line.
Fixed @ linking autocomplete bug 擴展基本資訊
| 名稱 | |
| ID | bbnfjminggbnmhkhjpnadlgpnjchbppa |
| 官方網址 | https://chrome.google.com/webstore/detail/hipchat-emot/bbnfjminggbnmhkhjpnadlgpnjchbppa |
| 簡介 | Add a list of available HipChat emoticons for easy use as well as some nice hot keys. |
| 檔案大小 | 39.24 KB |
| 安裝次數 | 27 |
| 目前版本 | 0.2.0 |
| 更新時間 | 2014-02-02 |
| 上架時間 | 2014-02-02 |
| 評分 | 2.67/5 共 6 次評分 |
| 開發者 | Jonathan Gertig |
| 付費類型 | free |
| 擴展官網 | https://github.com/jcgertig/hipchat-emot |
| 說明頁面URL | https://github.com/jcgertig/hipchat-emot |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HipChat Emot",
"short_name": "HipChat Emot",
"description": "Add a list of available HipChat emoticons for easy use as well as some nice hot keys.",
"version": "0.2.0",
"author": "Jonathan Gertig",
"manifest_version": 2,
"permissions": [
"tabs",
"storage",
"http:\/\/*.hipchat.com\/*",
"https:\/\/*.hipchat.com\/*",
"http:\/\/hipchat-emoticons.nyh.name\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/*.hipchat.com\/*",
"https:\/\/*.hipchat.com\/*",
"http:\/\/hipchat-emoticons.nyh.name\/"
],
"js": [
"content.js",
"js\/jquery-2.1.0.min.js"
],
"css": [
"styling.css"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"icons": {
"25": "sweetjesus.png"
},
"web_accessible_resources": [
"input.html",
"js\/jquery-2.1.0.min.js",
"bottom.png"
]
} | |