isMaintained
This extension provides an detail view of the maintenance level of GitHub projects. See https://arxiv.org/abs/1809.04041 for more.
Τι είναι το isMaintained;
Το isMaintained είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lucianomilen, και η κύρια λειτουργία του είναι "This extension provides an detail view of the maintenance level of GitHub projects. See https://arxiv.org/abs/1809.04041 for more.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης isMaintained
Λήψη αρχείων επέκτασης isMaintained σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Ever wondered if a GitHub project is actively maintained?
isMaintained is a Chrome extension that seamlessly indicates whether a GitHub project is actively maintained or not. To provide this information, we only install a small icon in the right side of a repository's page.
This icon (and its color) is used to inform the maintenance level a project, as follows:
* The project is under continuous maintenance. In this case, we classify the maintenance activity in three levels: high (green icon), fair (yellow icon) or borderline (orange icon). You can also click on the icon to see the project's classification.
* The project is not under maintenance or is rarely maintained (red icon).
* A grey icon indicates the project is not analysed by isMaintained (for example, because it only contains documentation, only uses GitHub as a mirror, or not handle issues using GitHub).
How it works: isMaintained relies on machine learning classifiers to predict the maintenance status of a GitHUb project. The classifiers are trained with several metrics about a project's maintenance activity over time, including number of commits, opened/merged pull requests, opened/closed issues, etc.
About: isMaintained is a research prototype from the Applied Software Engineering Research Group, at the Federal University of Minas Gerais, Brazil. For more information, see this paper: https://arxiv.org/abs/1809.04041. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | oeacpnaalfhjklghnocjfeecmminnhhd |
| Επίσημο URL | https://chrome.google.com/webstore/detail/ismaintained/oeacpnaalfhjklghnocjfeecmminnhhd |
| Περιγραφή | This extension provides an detail view of the maintenance level of GitHub projects. See https://arxiv.org/abs/1809.04041 for more. |
| Μέγεθος Αρχείου | 208 KB |
| Αριθμός Εγκαταστάσεων | 17 |
| Τρέχουσα Έκδοση | 1.1.0 |
| Τελευταία Ενημέρωση | 2019-12-11 |
| Ημερομηνία Δημοσίευσης | 2019-12-11 |
| Αξιολόγηση | 3.50/5 Συνολικά 4 Αξιολογήσεις |
| Προγραμματιστής | lucianomilen |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/lucianomilen/isMaintained-extension |
| Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/lucianomilen/isMaintained-extension |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "isMaintained",
"version": "1.1.0",
"description": "This extension provides an detail view of the maintenance level of GitHub projects. See https:\/\/arxiv.org\/abs\/1809.04041 for more.",
"manifest_version": 2,
"permissions": [
"declarativeContent",
"tabs",
"https:\/\/github.com\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"style.css"
],
"js": [
"jquery-3.3.1.min.js",
"firebase.js",
"raphael-2.1.4.min.js",
"justgage.js",
"app.js"
]
}
],
"web_accessible_resources": [
"images\/left-chevron.svg",
"images\/right-chevron.svg"
],
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"page_action": {
"default_icon": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
}
},
"icons": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
}
} | |