Github Issue Template
Backbone for structuring Github Issues
What is Github Issue Template?
Github Issue Template is a Chrome extension developed by Ovidiu Cherecheș, and its main feature is "Backbone for structuring Github Issues".
Download Github Issue Template Extension CRX File
Download Github Issue Template 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 | |
ID | cmkibacnfglkpeejephdhdmeefhogdka |
Official URL | https://chrome.google.com/webstore/detail/github-issue-template/cmkibacnfglkpeejephdhdmeefhogdka |
Description | Backbone for structuring Github Issues |
File Size | 57.85 KB |
Installation Count | 25 |
Current Version | 0.1.2 |
Last Updated | 2014-05-28 |
Publish Date | 2014-05-28 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Ovidiu Cherecheș |
Payment Type | free |
Extension Website | https://github.com/skidding/github-issue-template |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Issue Template", "version": "0.1.2", "manifest_version": 2, "description": "Backbone for structuring Github Issues", "icons": { "16": "icon16.png", "48": "icon48.png" }, "permissions": [ "*:\/\/rawgit.com\/", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/issues\/new" ], "js": [ "script\/lib\/jquery.min.js", "script\/lib\/jquery.cursor-position.js", "script\/lib\/jquery.select-range.js", "script\/new-issue-page.js" ] } ], "browser_action": { "default_icon": { "19": "icon19.png" }, "default_title": "Create new Github Issue", "default_popup": "popup.html" }, "options_page": "options.html" } |