GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
什麼是GitHub Issue Copy Extension?
GitHub Issue Copy Extension是由Haruya Nakamura開發的Chrome擴展程式,該擴展的主要功能是“This extension supports copying and creating new issues on GitHub.”。
擴展截圖
下載GitHub Issue Copy Extension擴展crx文件
下載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 |
官方網址 | 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" ] } |