HubCare - Check GitHub repositories' health

Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with.

Τι είναι το HubCare - Check GitHub repositories' health;

Το HubCare - Check GitHub repositories' health είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cjj.castro3, και η κύρια λειτουργία του είναι "Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HubCare - Check GitHub repositories' health

Λήψη αρχείων επέκτασης HubCare - Check GitHub repositories' health σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Hubcare is an open-source project to manage if a repository is good or not to a newcomer, either a passing visitor, someone who looks for contributions or someone who just is interested in the software.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HubCare - Check GitHub repositories' health HubCare - Check GitHub repositories' health
ID jaalemmhbmjojoppdncnekgnjgfbfbda
Επίσημο URL https://chrome.google.com/webstore/detail/hubcare-check-github-repo/jaalemmhbmjojoppdncnekgnjgfbfbda
Περιγραφή Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with.
Μέγεθος Αρχείου 281 KB
Αριθμός Εγκαταστάσεων 14
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2019-06-24
Ημερομηνία Δημοσίευσης 2019-06-24
Αξιολόγηση 2.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής cjj.castro3
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "minimum_chrome_version": "10.0",
    "devtools_page": "pages\/devtools.html",
    "chrome_url_overrides": [],
    "omnibox": {
        "keyword": "hubcare"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js",
                "scripts\/oauth2.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab",
        "bookmarks",
        "browsingData",
        "contextMenus",
        "history",
        "identity",
        "idle",
        "management",
        "nativeMessaging",
        "notifications",
        "privacy",
        "proxy",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/hubcare.ml\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "images\/questionMark.svg"
    ]
}