Avatars for Github
Displaying user avatars in github news feed page
Avatars for Githubとは何ですか?
Avatars for GithubはAnas Nakawaによって開発されたChromeの拡張機能で、その主な機能は「Displaying user avatars in github news feed page」です。
拡張機能のスクリーンショット
Avatars for Github拡張機能のCRXファイルをダウンロード
Avatars for Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
displayed user avatars on the Github news feed, nothing more, nothing less..
拡張機能の基本情報
名前 | ![]() |
ID | pgjmdbklnfklcjfbonjfkdhaonlfogbb |
公式URL | https://chrome.google.com/webstore/detail/avatars-for-github/pgjmdbklnfklcjfbonjfkdhaonlfogbb |
説明 | Displaying user avatars in github news feed page |
ファイルサイズ | 178 KB |
インストール数 | 2,000 |
現在のバージョン | 0.1.5 |
最終更新日 | 2016-01-18 |
公開日 | 2016-01-18 |
評価 | 5.00/5 合計 7 レビュー |
開発者 | Anas Nakawa |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/anasnakawa/chrome-github-avatars |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Avatars for Github", "version": "0.1.5", "manifest_version": 2, "description": "Displaying user avatars in github news feed page", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "homepage_url": "http:\/\/github.com\/anasnakawa\/chrome-github-avatars", "permissions": [ "tabs", "*:\/\/github.com\/" ], "background": { "scripts": [ "scripts\/background.js" ] }, "web_accessible_resources": [], "content_scripts": [ { "matches": [ "*:\/\/github.com\/" ], "css": [ "styles\/main.css" ], "js": [ "bower_components\/jquery\/jquery.js", "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |