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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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" ] } |