GitHub Pre Utility

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

What is GitHub Pre Utility?

GitHub Pre Utility is a Chrome extension developed by yoheimuta, and its main feature is "Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download GitHub Pre Utility Extension CRX File

Download GitHub Pre Utility extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub Pre Utility GitHub Pre Utility
ID ohbmbjnjnkbfnmilcpklobimhkbdcdjl
Official URL https://chromewebstore.google.com/detail/github-pre-utility/ohbmbjnjnkbfnmilcpklobimhkbdcdjl
Description Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…
File Size 168 KB
Installation Count 70
Current Version 0.1.0
Last Updated 2015-07-04
Publish Date 2015-07-04
Rating 5.00/5 Total 1 Ratings
Developer yoheimuta
Payment Type free
Extension Website https://github.com/yoheimuta/github-pre-utility
Help Page URL https://github.com/yoheimuta/github-pre-utility/issues
Supported Languages 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"
    ]
}