GitHub Pre Utility

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

Qu'est-ce que GitHub Pre Utility ?

GitHub Pre Utility est une extension Chrome développée par yoheimuta, et sa fonction principale est "Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub Pre Utility

Téléchargez les fichiers d'extension GitHub Pre Utility au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom GitHub Pre Utility GitHub Pre Utility
ID ohbmbjnjnkbfnmilcpklobimhkbdcdjl
URL Officiel 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…
Taille du Fichier 168 KB
Nombre d'Installations 70
Version Actuelle 0.1.0
Dernière Mise à Jour 2015-07-04
Date de Publication 2015-07-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur yoheimuta
Type de Paiement free
Site Web de l'Extension https://github.com/yoheimuta/github-pre-utility
URL de la Page d'Aide https://github.com/yoheimuta/github-pre-utility/issues
Langues Prises en Charge 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"
    ]
}