Github PRs viewer
Check your open/assigned pull requests without opening Github
Co to jest Github PRs viewer?
Github PRs viewer to rozszerzenie Chrome opracowane przez tomas.shrewsbury, a jego główną funkcją jest „Check your open/assigned pull requests without opening Github”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github PRs viewer
Pobierz pliki rozszerzeń Github PRs viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
Podstawowe informacje o rozszerzeniu
Nazwa | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
Oficjalny URL | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
Opis | Check your open/assigned pull requests without opening Github |
Rozmiar pliku | 3.48 MB |
Liczba instalacji | 25 |
Aktualna Wersja | 2.0.3 |
Ostatnia Aktualizacja | 2020-05-18 |
Data Publikacji | 2020-05-18 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | tomas.shrewsbury |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://candidates.flycricket.io/privacy.html |
Obsługiwane Języki | 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" ] } |