GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
Apa itu GitHub Issue Copy Extension?
GitHub Issue Copy Extension adalah ekstensi Chrome yang dikembangkan oleh Haruya Nakamura, dan fitur utamanya adalah "This extension supports copying and creating new issues on GitHub.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GitHub Issue Copy Extension
Unduh file ekstensi GitHub Issue Copy Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | GitHub Issue Copy Extension |
ID | poibkcoliihonlklhhflnhjkjjbbmklf |
URL Resmi | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
Deskripsi | This extension supports copying and creating new issues on GitHub. |
Ukuran File | 55.59 KB |
Jumlah Instalasi | 415 |
Versi Saat Ini | 1.1.1 |
Terakhir Diperbarui | 2023-06-22 |
Tanggal Publikasi | 2021-08-03 |
Pengembang | Haruya Nakamura |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/hareruya-maro/github-issue-copy-extention |
URL Halaman Bantuan | https://github.com/hareruya-maro/github-issue-copy-extention |
Bahasa yang Didukung | 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" ] } |