GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
GitHub Issue Copy Extensionคืออะไร?
GitHub Issue Copy Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Haruya Nakamura และคุณลักษณะหลักของมันคือ "This extension supports copying and creating new issues on GitHub."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Issue Copy Extension
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Issue Copy Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Issue Copy Extension |
ID | poibkcoliihonlklhhflnhjkjjbbmklf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
คำอธิบาย | This extension supports copying and creating new issues on GitHub. |
ขนาดไฟล์ | 55.59 KB |
จำนวนการติดตั้ง | 415 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2023-06-22 |
วันที่เผยแพร่ | 2021-08-03 |
ผู้พัฒนา | Haruya Nakamura |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/hareruya-maro/github-issue-copy-extention |
URL หน้าช่วยเหลือ | https://github.com/hareruya-maro/github-issue-copy-extention |
ภาษาที่รองรับ | 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" ] } |