Github PRs viewer
Check your open/assigned pull requests without opening Github
Github PRs viewer क्या है?
Github PRs viewer tomas.shrewsbury द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check your open/assigned pull requests without opening Github"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github PRs viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
एक्सटेंशन की मूल जानकारी
नाम | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
विवरण | Check your open/assigned pull requests without opening Github |
फ़ाइल का आकार | 3.48 MB |
स्थापना संख्या | 25 |
वर्तमान संस्करण | 2.0.3 |
अंतिम अपडेट | 2020-05-18 |
प्रकाशन तिथि | 2020-05-18 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | tomas.shrewsbury |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://candidates.flycricket.io/privacy.html |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github PRs viewer", "short_name": "Github PRs", "version": "2.0.3", "description": "Check your open\/assigned pull requests without opening Github", "author": "Tomas Shrewsbury", "icons": { "64": "icons\/icon-logo.png", "128": "icons\/icon-logo.png" }, "browser_action": { "default_title": "Github Buddy", "default_popup": "index.html" }, "background": { "scripts": [ ".\/oauth2\/oauth2.js", ".\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/robots.txt*" ], "js": [ ".\/oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "https:\/\/github.com\/login\/oauth\/access_token", "idle", "notifications", "contextMenus" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ] } |