GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
Was ist GitHub Issue Copy Extension?
GitHub Issue Copy Extension ist eine Chrome-Erweiterung, die von Haruya Nakamura entwickelt wurde, und ihr Hauptmerkmal ist "This extension supports copying and creating new issues on GitHub.".
Erweiterungsscreenshots
GitHub Issue Copy Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Issue Copy Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GitHub Issue Copy Extension |
ID | poibkcoliihonlklhhflnhjkjjbbmklf |
Offizielle URL | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
Beschreibung | This extension supports copying and creating new issues on GitHub. |
Dateigröße | 55.59 KB |
Installationsanzahl | 415 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2023-06-22 |
Veröffentlichungsdatum | 2021-08-03 |
Entwickler | Haruya Nakamura |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/hareruya-maro/github-issue-copy-extention |
Hilfeseite URL | https://github.com/hareruya-maro/github-issue-copy-extention |
Unterstützte Sprachen | 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" ] } |