GitHub Issue Copy Extension

This extension supports copying and creating new issues on GitHub.

Hvad er GitHub Issue Copy Extension?

GitHub Issue Copy Extension er en Chrome-udvidelse udviklet af Haruya Nakamura, og dens hovedfunktion er "This extension supports copying and creating new issues on GitHub.".

Udvidelsesskærmbilleder

screenshot

Download GitHub Issue Copy Extension-udvidelses-CRX-fil

Download GitHub Issue Copy Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn GitHub Issue Copy Extension GitHub Issue Copy Extension
ID poibkcoliihonlklhhflnhjkjjbbmklf
Officiel URL https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf
Beskrivelse This extension supports copying and creating new issues on GitHub.
Filstørrelse 55.59 KB
Antal Installationer 415
Nuværende Version 1.1.1
Senest Opdateret 2023-06-22
Udgivelsesdato 2021-08-03
Udvikler Haruya Nakamura
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/hareruya-maro/github-issue-copy-extention
Hjælpeside-URL https://github.com/hareruya-maro/github-issue-copy-extention
Understøttede Sprog 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"
    ]
}