GitHub Issue Copy Extension

This extension supports copying and creating new issues on GitHub.

Co to jest GitHub Issue Copy Extension?

GitHub Issue Copy Extension to rozszerzenie Chrome opracowane przez Haruya Nakamura, a jego główną funkcją jest „This extension supports copying and creating new issues on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Issue Copy Extension

Pobierz pliki rozszerzeń GitHub Issue Copy Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Issue Copy Extension GitHub Issue Copy Extension
ID poibkcoliihonlklhhflnhjkjjbbmklf
Oficjalny URL https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf
Opis This extension supports copying and creating new issues on GitHub.
Rozmiar pliku 55.59 KB
Liczba instalacji 415
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2023-06-22
Data Publikacji 2021-08-03
Deweloper Haruya Nakamura
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hareruya-maro/github-issue-copy-extention
Adres URL Strony Pomocy https://github.com/hareruya-maro/github-issue-copy-extention
Obsługiwane Języki 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"
    ]
}