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是由cjj.castro3开发的Chrome扩展程序,该扩展的主要功能是“Fastly check a GitHub repository's health and save your time when choosing what software to use or contribute with.”。

扩展截图

screenshot
screenshot
screenshot

下载HubCare - Check GitHub repositories' health扩展crx文件

下载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"
    ]
}