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
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } } |