GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
Vad är GitHub Issue Copy Extension?
GitHub Issue Copy Extension är en Chrome-tillägg utvecklad av Haruya Nakamura, och dess huvudfunktion är "This extension supports copying and creating new issues on GitHub.".
Tilläggsskärmbilder
Ladda ner GitHub Issue Copy Extension-förlängningens CRX-fil
Ladda ner GitHub Issue Copy Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | poibkcoliihonlklhhflnhjkjjbbmklf |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
| Beskrivning | This extension supports copying and creating new issues on GitHub. |
| Filstorlek | 55.59 KB |
| Antal Installationer | 415 |
| Aktuell Version | 1.1.1 |
| Senast Uppdaterad | 2023-06-22 |
| Publiceringsdatum | 2021-08-03 |
| Utvecklare | Haruya Nakamura |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/hareruya-maro/github-issue-copy-extention |
| Hjälpsida URL | https://github.com/hareruya-maro/github-issue-copy-extention |
| Stödda Språk | 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"
]
} | |