github-issue-utils
Utilities for GitHub Issues
Τι είναι το github-issue-utils;
Το github-issue-utils είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sirkitree, και η κύρια λειτουργία του είναι "Utilities for GitHub Issues".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης github-issue-utils
Λήψη αρχείων επέκτασης github-issue-utils σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Finds all users for a GitHub project and creates filter links to their issue queues.
As a project manager for many projects which use GitHub, It makes my life easier to look at what issues are assigned to a particular user. GitHub issues does not have a UI for this, but you can craft a URL to show you a list of all issues assigned to a particular user.
This extension crafts these URLs for you by turning your "Assigned to me" filter link into a dropdown of "Assigned to" links for each user of your project.
## Changelog
1.4: fixes to extension regarding manifest and changes to github DOM
1.3: fix an incorrect filename resulting in a bad install.
1.2: re-apply our changes after an XHR (which github tends to use a lot)
1.1: fixed issue where elements were added even if we didn't have a valid list of users to operate upon. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | fhehiakkggdpbcgknhebkbhiadnpplag |
| Επίσημο URL | https://chromewebstore.google.com/detail/github-issue-utils/fhehiakkggdpbcgknhebkbhiadnpplag |
| Περιγραφή | Utilities for GitHub Issues |
| Μέγεθος Αρχείου | 122 KB |
| Αριθμός Εγκαταστάσεων | 29 |
| Τρέχουσα Έκδοση | 1.4 |
| Τελευταία Ενημέρωση | 2014-03-23 |
| Ημερομηνία Δημοσίευσης | 2014-03-23 |
| Αξιολόγηση | 4.00/5 Συνολικά 1 Αξιολογήσεις |
| Προγραμματιστής | sirkitree |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/sirkitree/github-issue-utils |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "1.4",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "icon-16.png",
"128": "icon-128.png"
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/*\/issues*",
"https:\/\/github.com\/*\/*\/issues",
"https:\/\/github.com\/*\/*\/issues\/*\/*"
],
"css": [
"styles\/main.css"
],
"js": [
"components\/jquery\/jquery.min.js",
"main.js"
]
}
],
"web_accessible_resources": [
"components\/jquery\/jquery.min.map"
]
} | |