GitHub Issue Copy Extension

This extension supports copying and creating new issues on GitHub.

Qu'est-ce que GitHub Issue Copy Extension ?

GitHub Issue Copy Extension est une extension Chrome développée par Haruya Nakamura, et sa fonction principale est "This extension supports copying and creating new issues on GitHub.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GitHub Issue Copy Extension

Téléchargez les fichiers d'extension GitHub Issue Copy Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom GitHub Issue Copy Extension GitHub Issue Copy Extension
ID poibkcoliihonlklhhflnhjkjjbbmklf
URL Officiel https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf
Description This extension supports copying and creating new issues on GitHub.
Taille du Fichier 55.59 KB
Nombre d'Installations 415
Version Actuelle 1.1.1
Dernière Mise à Jour 2023-06-22
Date de Publication 2021-08-03
Développeur Haruya Nakamura
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/hareruya-maro/github-issue-copy-extention
URL de la Page d'Aide https://github.com/hareruya-maro/github-issue-copy-extention
Langues Prises en Charge 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"
    ]
}