GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
Apa itu GitHub Dashboard Avatars?
GitHub Dashboard Avatars adalah ekstensi Chrome yang dikembangkan oleh ryaneof, dan fitur utamanya adalah "Display your Github dashboard avatars appropriately.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GitHub Dashboard Avatars
Unduh file ekstensi GitHub Dashboard Avatars dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
A simple Chrome Extension which display your GitHub dashboard avatars appropriately. Display Options: All Avatars, No Avatars.
Informasi Dasar Ekstensi
Nama | |
ID | gmbhmmbplafgcmeikgohjpanekbcmbhp |
URL Resmi | https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp |
Deskripsi | Display your Github dashboard avatars appropriately. |
Ukuran File | 74.46 KB |
Jumlah Instalasi | 49 |
Versi Saat Ini | 0.1.3 |
Terakhir Diperbarui | 2016-07-29 |
Tanggal Publikasi | 2016-07-29 |
Pengembang | ryaneof |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/ryaneof/github-dashboard-avatars |
URL Halaman Bantuan | https://github.com/ryaneof/github-dashboard-avatars |
URL Halaman Kebijakan Privasi | https://ryan.im |
Bahasa yang Didukung | 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\/*" ] } |