GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

Was ist GitHub Dashboard Avatars?

GitHub Dashboard Avatars ist eine Chrome-Erweiterung, die von ryaneof entwickelt wurde, und ihr Hauptmerkmal ist "Display your Github dashboard avatars appropriately.".

Erweiterungsscreenshots

screenshot
screenshot

GitHub Dashboard Avatars-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Dashboard Avatars-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A simple Chrome Extension which display your GitHub dashboard avatars appropriately.

Display Options: All Avatars, No Avatars.                    

Grundlegende Informationen zur Erweiterung

Name GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
Offizielle URL https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
Beschreibung Display your Github dashboard avatars appropriately.
Dateigröße 74.46 KB
Installationsanzahl 49
Aktuelle Version 0.1.3
Letztes Update 2016-07-29
Veröffentlichungsdatum 2016-07-29
Entwickler ryaneof
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ryaneof/github-dashboard-avatars
Hilfeseite URL https://github.com/ryaneof/github-dashboard-avatars
URL der Datenschutzrichtlinien-Seite https://ryan.im
Unterstützte Sprachen 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\/*"
    ]
}