GitHub Issue Copy Extension

This extension supports copying and creating new issues on GitHub.

What is GitHub Issue Copy Extension?

GitHub Issue Copy Extension is a Chrome extension developed by Haruya Nakamura, and its main feature is "This extension supports copying and creating new issues on GitHub.".

Extension Screenshots

screenshot

Download GitHub Issue Copy Extension Extension CRX File

Download GitHub Issue Copy Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub Issue Copy Extension GitHub Issue Copy Extension
ID poibkcoliihonlklhhflnhjkjjbbmklf
Official URL https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf
Description This extension supports copying and creating new issues on GitHub.
File Size 55.59 KB
Installation Count 415
Current Version 1.1.1
Last Updated 2023-06-22
Publish Date 2021-08-03
Developer Haruya Nakamura
Email [email protected]
Payment Type free
Extension Website https://github.com/hareruya-maro/github-issue-copy-extention
Help Page URL https://github.com/hareruya-maro/github-issue-copy-extention
Supported Languages 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"
    ]
}