Github Pull Request Counter

A chrome extension to remove mental load when working with pull requests.

Co to jest Github Pull Request Counter?

Github Pull Request Counter to rozszerzenie Chrome opracowane przez Renuo, a jego główną funkcją jest „A chrome extension to remove mental load when working with pull requests.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Github Pull Request Counter

Pobierz pliki rozszerzeń Github Pull Request Counter 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

                        Maintains a list of GitHub pull request which need action, such as review or merging. This removes mental load and decreases the amount of time between reviews.                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Pull Request Counter Github Pull Request Counter
ID eeejbcmnmgogpkgeinlbchoafjjbegmi
Oficjalny URL https://chromewebstore.google.com/detail/github-pull-request-count/eeejbcmnmgogpkgeinlbchoafjjbegmi
Opis A chrome extension to remove mental load when working with pull requests.
Rozmiar pliku 68.37 KB
Liczba instalacji 81
Aktualna Wersja 1.0.10
Ostatnia Aktualizacja 2023-06-24
Data Publikacji 2021-08-02
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Renuo
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/renuo/github-pull-request-counter
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Renuo AG",
    "name": "Github Pull Request Counter",
    "description": "A chrome extension to remove mental load when working with pull requests.",
    "version": "1.0.10",
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}