Hide and Seek

Add the ability to remember completes files to a github pr.

Hide and Seek란 무엇입니까?

Hide and Seek은(는) roush.kyle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add the ability to remember completes files to a github pr."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hide and Seek 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This a tool to help make pull request easier.

It helps by letting you "complete" files.
* This will automatically hide the file
* When you revisit the page it will keep your completed files hidden
* However if there are changes to the file it will "uncomplete" the file and add a thinking emoji

You can also report bar of how much you have completed with your other diffstats


You can share your completion percentage with others when you submit a review to a PR                    

확장 프로그램 기본 정보

이름 Hide and Seek Hide and Seek
ID kfkehjgecfpkpknedlgjknlgcaeeekmo
공식 URL https://chromewebstore.google.com/detail/hide-and-seek/kfkehjgecfpkpknedlgjknlgcaeeekmo
설명 Add the ability to remember completes files to a github pr.
파일 크기 73.37 KB
설치 횟수 22
현재 버전 1.13.2
최근 업데이트 2018-08-22
출시 날짜 2018-08-22
평점 4.67/5 총 3 개의 평점
개발자 roush.kyle
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kyleroush/PR-Hide-And-Seek
도움말 페이지 URL https://github.com/kyleroush/PR-Hide-And-Seek
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Add the ability to remember completes files to a github pr.",
    "manifest_version": 2,
    "name": "Hide and Seek",
    "version": "1.13.2",
    "homepage_url": "https:\/\/github.com\/kyleroush\/PR-Hide-And-Seek\/",
    "icons": {
        "48": "logos\/PrPenguin48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/PRUtils.js",
                "scripts\/Comments.js",
                "scripts\/DataStorage.js",
                "scripts\/GithubRestApi.js",
                "scripts\/HideAndSeek.js",
                "StartUp.js"
            ]
        }
    ]
}