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 |
| 官方網址 | 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"
}
} | |