Github PRs viewer

Check your open/assigned pull requests without opening Github

Github PRs viewer란 무엇입니까?

Github PRs viewer은(는) tomas.shrewsbury에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check your open/assigned pull requests without opening Github"입니다.

확장 프로그램 스크린샷

screenshot

Github PRs viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Permite ver PRs de Github de una manera mucho mas comoda y rapida!                    

확장 프로그램 기본 정보

이름 Github PRs viewer 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"
    ]
}