GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
GitHub Dashboard Avatars क्या है?
GitHub Dashboard Avatars ryaneof द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display your Github dashboard avatars appropriately."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Dashboard Avatars एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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\/*" ] } |