Github code folding
Add code folding functionality on github for code indented using 2 spaces
What is Github code folding?
Github code folding is a Chrome extension developed by Ryan Harkins, and its main feature is "Add code folding functionality on github for code indented using 2 spaces".
Extension Screenshots
Download Github code folding Extension CRX File
Download Github code folding 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
Extension Basic Information
Name | Github code folding |
ID | iokmjnihlfnchffcmjihafillepmhogk |
Official URL | https://chromewebstore.google.com/detail/github-code-folding/iokmjnihlfnchffcmjihafillepmhogk |
Description | Add code folding functionality on github for code indented using 2 spaces |
File Size | 14.7 KB |
Installation Count | 41 |
Current Version | 0.0.1 |
Last Updated | 2015-05-23 |
Publish Date | 2015-05-23 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Ryan Harkins |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github code folding", "version": "0.0.1", "manifest_version": 2, "description": "Add code folding functionality on github for code indented using 2 spaces", "homepage_url": "http:\/\/github.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "src\/inject\/inject.css" ], "js": [ "src\/inject\/inject.js" ] } ] } |