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 |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
} | |