GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
GitHub Issue Copy Extension là gì?
GitHub Issue Copy Extension là một tiện ích mở rộng Chrome được phát triển bởi Haruya Nakamura, và tính năng chính của nó là "This extension supports copying and creating new issues on GitHub.".
Ả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 Copy Extension
Tải xuống các tệp mở rộng GitHub Issue Copy Extension 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
This extension supports copying and creating new issues on GitHub. Right-click on the screen of the issue you want to copy and click "Copy this issue" to open the screen to copy the Subject, Body, Labels, and Assignees to create a new issue.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Issue Copy Extension |
ID | poibkcoliihonlklhhflnhjkjjbbmklf |
URL Chính Thức | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
Mô tả | This extension supports copying and creating new issues on GitHub. |
Kích Thước Tệp | 55.59 KB |
Số Lần Cài Đặt | 415 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2023-06-22 |
Ngày Phát Hành | 2021-08-03 |
Nhà Phát Triển | Haruya Nakamura |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hareruya-maro/github-issue-copy-extention |
URL Trang Trợ Giúp | https://github.com/hareruya-maro/github-issue-copy-extention |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_Name__", "description": "__MSG_Description__", "manifest_version": 3, "default_locale": "en", "version": "1.1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "contextMenus" ] } |