GitHub Pre Utility
Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…
Was ist GitHub Pre Utility?
GitHub Pre Utility ist eine Chrome-Erweiterung, die von yoheimuta entwickelt wurde, und ihr Hauptmerkmal ist "Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…".
Erweiterungsscreenshots
GitHub Pre Utility-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Pre Utility-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GitHub Pre Utility |
ID | ohbmbjnjnkbfnmilcpklobimhkbdcdjl |
Offizielle URL | https://chromewebstore.google.com/detail/github-pre-utility/ohbmbjnjnkbfnmilcpklobimhkbdcdjl |
Beschreibung | Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists… |
Dateigröße | 168 KB |
Installationsanzahl | 70 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2015-07-04 |
Veröffentlichungsdatum | 2015-07-04 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | yoheimuta |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/yoheimuta/github-pre-utility |
Hilfeseite URL | https://github.com/yoheimuta/github-pre-utility/issues |
Unterstützte Sprachen | 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" ] } |