Github Pull Request Counter
A chrome extension to remove mental load when working with pull requests.
What is Github Pull Request Counter?
Github Pull Request Counter is a Chrome extension developed by Renuo, and its main feature is "A chrome extension to remove mental load when working with pull requests.".
Extension Screenshots
Download Github Pull Request Counter Extension CRX File
Download Github Pull Request Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Github Pull Request Counter |
ID | eeejbcmnmgogpkgeinlbchoafjjbegmi |
Official URL | https://chromewebstore.google.com/detail/github-pull-request-count/eeejbcmnmgogpkgeinlbchoafjjbegmi |
Description | A chrome extension to remove mental load when working with pull requests. |
File Size | 68.37 KB |
Installation Count | 81 |
Current Version | 1.0.10 |
Last Updated | 2023-06-24 |
Publish Date | 2021-08-02 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Renuo |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/renuo/github-pull-request-counter |
Supported Languages | 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" } } |