GitHub PR Check Status
provides better UI for PR check status details
GitHub PR Check Status क्या है?
GitHub PR Check Status bdkent द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "provides better UI for PR check status details"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub PR Check Status एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The current GitHub pull request UI has a tiny window to the CI Action "Checks". Many large projects have dozen of checks that run per push but there is no good way to see / filter all the actions. This browser extension provides a little icon on the bottom right that when clicked will display an overlay that lets one see and filter the checks.
एक्सटेंशन की मूल जानकारी
नाम | GitHub PR Check Status |
ID | ldddlenkajkonchccpkjapihmdgjgjop |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop |
विवरण | provides better UI for PR check status details |
फ़ाइल का आकार | 53.68 KB |
स्थापना संख्या | 49 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2023-09-20 |
प्रकाशन तिथि | 2023-08-13 |
डेवलपर | bdkent |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/bdkent/gh-pr-ext |
सहायता पृष्ठ URL | https://github.com/bdkent/gh-pr-ext/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GitHub PR Check Status", "description": "provides better UI for PR check status details", "version": "1.0.2", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*" ], "js": [ "js\/content.js" ] } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "42.0" } } } |