GitHub Pre Utility

Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…

GitHub Pre Utility란 무엇입니까?

GitHub Pre Utility은(는) yoheimuta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

GitHub Pre Utility 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it.

- You can read github issues and gists with long comments without horizontal and vertical scrolling.

This extension uses the keys `r` to wrap pre/code tag and `t` to collapse pre tag.

Options

- You can switch to work automatically (= without a key down) wrap and collapse with options page.
- You can change character length to control first view of collapsed content.
- You can change key codes to wrap and collapse with manually.
 - Click any keys on http://semooh.jp/jquery/api/events/keydown/fn/demo-1/ to confirm a key code.

See https://github.com/yoheimuta/github-pre-utility to understand in detail.                    

확장 프로그램 기본 정보

이름 GitHub Pre Utility GitHub Pre Utility
ID ohbmbjnjnkbfnmilcpklobimhkbdcdjl
공식 URL https://chromewebstore.google.com/detail/github-pre-utility/ohbmbjnjnkbfnmilcpklobimhkbdcdjl
설명 Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…
파일 크기 168 KB
설치 횟수 70
현재 버전 0.1.0
최근 업데이트 2015-07-04
출시 날짜 2015-07-04
평점 5.00/5 총 1 개의 평점
개발자 yoheimuta
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/yoheimuta/github-pre-utility
도움말 페이지 URL https://github.com/yoheimuta/github-pre-utility/issues
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Pre Utility",
    "manifest_version": 2,
    "version": "0.1.0",
    "description": "",
    "homepage_url": "https:\/\/github.com\/yoheimuta\/github-pre-utility",
    "icons": {
        "128": "pre_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "vendor\/jquery\/jquery.min.js",
                "vendor\/jquery-collapser\/jquery.collapser.min.js",
                "main.js",
                "toggle_pre.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "vendor\/jquery\/jquery.min.map"
    ]
}