github-issue-utils

Utilities for GitHub Issues

Co to jest github-issue-utils?

github-issue-utils to rozszerzenie Chrome opracowane przez sirkitree, a jego główną funkcją jest „Utilities for GitHub Issues”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia github-issue-utils

Pobierz pliki rozszerzeń github-issue-utils w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa github-issue-utils github-issue-utils
ID fhehiakkggdpbcgknhebkbhiadnpplag
Oficjalny URL https://chromewebstore.google.com/detail/github-issue-utils/fhehiakkggdpbcgknhebkbhiadnpplag
Opis Utilities for GitHub Issues
Rozmiar pliku 122 KB
Liczba instalacji 29
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2014-03-23
Data Publikacji 2014-03-23
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper sirkitree
Typ Płatności free
Strona Rozszerzenia https://github.com/sirkitree/github-issue-utils
Obsługiwane Języki 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"
    ]
}