GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
GitHub Issue Creator là gì?
GitHub Issue Creator là một tiện ích mở rộng Chrome được phát triển bởi AO, và tính năng chính của nó là "Create GitHub issues with custom templates automatically applied".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub Issue Creator
Tải xuống các tệp mở rộng GitHub Issue Creator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
HOW TO USE: - Locate extension button or go to `chrome://extensions`, to find the extension options. - Specify the repositories you would like to create issues for - Go to the Extension Options for more info! Source Code: https://github.com/MattyAyOh/GitHubIssueCreator
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Issue Creator |
ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
URL Chính Thức | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
Mô tả | Create GitHub issues with custom templates automatically applied |
Kích Thước Tệp | 90.02 KB |
Số Lần Cài Đặt | 19 |
Phiên Bản Hiện Tại | 0.1.9 |
Cập Nhật Lần Cuối | 2016-12-21 |
Ngày Phát Hành | 2016-12-20 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | AO |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "script\/background.js" ] }, "name": "GitHub Issue Creator", "version": "0.1.9", "manifest_version": 2, "description": "Create GitHub issues with custom templates automatically applied", "icons": { "16": "github_black.png", "48": "github_black.png" }, "permissions": [ "*:\/\/github.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": "github2.png" }, "default_title": "Create new Github Issue", "default_popup": "popup.html" }, "options_page": "options.html" } |