Github PRs viewer
Check your open/assigned pull requests without opening Github
Vad är Github PRs viewer?
Github PRs viewer är en Chrome-tillägg utvecklad av tomas.shrewsbury, och dess huvudfunktion är "Check your open/assigned pull requests without opening Github".
Tilläggsskärmbilder
Ladda ner Github PRs viewer-förlängningens CRX-fil
Ladda ner Github PRs viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
Grundläggande Information om Tillägg
Namn | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
Officiell webbadress | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
Beskrivning | Check your open/assigned pull requests without opening Github |
Filstorlek | 3.48 MB |
Antal Installationer | 25 |
Aktuell Version | 2.0.3 |
Senast Uppdaterad | 2020-05-18 |
Publiceringsdatum | 2020-05-18 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | tomas.shrewsbury |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://candidates.flycricket.io/privacy.html |
Stödda Språk | 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" ] } |