GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
GitHub Dashboard Avatarsとは何ですか?
GitHub Dashboard Avatarsはryaneofによって開発されたChromeの拡張機能で、その主な機能は「Display your Github dashboard avatars appropriately.」です。
拡張機能のスクリーンショット
GitHub Dashboard Avatars拡張機能のCRXファイルをダウンロード
GitHub Dashboard Avatars拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple Chrome Extension which display your GitHub dashboard avatars appropriately.
Display Options: All Avatars, No Avatars. 拡張機能の基本情報
| 名前 | |
| ID | gmbhmmbplafgcmeikgohjpanekbcmbhp |
| 公式URL | https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp |
| 説明 | Display your Github dashboard avatars appropriately. |
| ファイルサイズ | 74.46 KB |
| インストール数 | 49 |
| 現在のバージョン | 0.1.3 |
| 最終更新日 | 2016-07-29 |
| 公開日 | 2016-07-29 |
| 開発者 | ryaneof |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/ryaneof/github-dashboard-avatars |
| ヘルプページのURL | https://github.com/ryaneof/github-dashboard-avatars |
| プライバシーポリシーページのURL | https://ryan.im |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Dashboard Avatars",
"version": "0.1.3",
"manifest_version": 2,
"description": "Display your Github dashboard avatars appropriately.",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/*.github.com\/*"
],
"css": [
"styles\/main.css"
],
"js": [
"bower_components\/jquery\/dist\/jquery.js",
"bower_components\/object.observe\/dist\/object-observe.js",
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"storage",
"https:\/\/*.github.com\/*"
]
} | |