Github Annotator
Show user details and repository info in a tooltip.
什么是Github Annotator?
Github Annotator是由Mesut Tasci开发的Chrome扩展程序,该扩展的主要功能是“Show user details and repository info in a tooltip.”。
扩展截图
下载Github Annotator扩展crx文件
下载Github Annotator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages.
Extension source code:
https://github.com/mesuutt/github-annotator 扩展基本信息
| 名称 | |
| ID | epmbkocbfiejffcjahjhncadlipmdime |
| 官方URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
| 简介 | Show user details and repository info in a tooltip. |
| 文件大小 | 81.68 KB |
| 安装次数 | 214 |
| 当前版本 | 2.1 |
| 更新时间 | 2017-10-22 |
| 上架时间 | 2017-10-22 |
| 评分 | 4.50/5 共2次评分 |
| 开发者 | Mesut Tasci |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://github.com/mesuutt/github-annotator |
| 帮助页面URL | https://github.com/mesuutt/github-annotator/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Annotator",
"description": "Show user details and repository info in a tooltip.",
"manifest_version": 2,
"version": "2.1",
"permissions": [
"storage"
],
"content_scripts": [
{
"js": [
"jquery-1.9.1.min.js",
"contentscript.js"
],
"css": [
"style.css"
],
"matches": [
"https:\/\/github.com\/"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"icons": {
"128": "icons\/icon128.png",
"48": "icons\/icon48.png",
"16": "icons\/icon16.png"
}
} | |