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 |
公式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 |
Eメール | [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" ] } |