Github Pull Request Counter
A chrome extension to remove mental load when working with pull requests.
Cos'è Github Pull Request Counter?
Github Pull Request Counter è un'estensione di Chrome sviluppata da Renuo, e la sua funzione principale è "A chrome extension to remove mental load when working with pull requests.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Pull Request Counter
Scarica i file di estensione Github Pull Request Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | eeejbcmnmgogpkgeinlbchoafjjbegmi |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-pull-request-count/eeejbcmnmgogpkgeinlbchoafjjbegmi |
| Descrizione | A chrome extension to remove mental load when working with pull requests. |
| Dimensione del File | 68.37 KB |
| Conteggio Installazioni | 81 |
| Versione Corrente | 1.0.10 |
| Ultimo Aggiornamento | 2023-06-24 |
| Data di Pubblicazione | 2021-08-02 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | Renuo |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/renuo/github-pull-request-counter |
| Lingue Supportate | 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"
}
} | |