GitHub Issue Copy Extension

This extension supports copying and creating new issues on GitHub.

什么是GitHub Issue Copy Extension?

GitHub Issue Copy Extension是由Haruya Nakamura开发的Chrome扩展程序,该扩展的主要功能是“This extension supports copying and creating new issues on GitHub.”。

扩展截图

screenshot

下载GitHub Issue Copy Extension扩展crx文件

下载GitHub Issue Copy Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 GitHub Issue Copy Extension GitHub Issue Copy Extension
ID poibkcoliihonlklhhflnhjkjjbbmklf
官方URL https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf
简介 This extension supports copying and creating new issues on GitHub.
文件大小 55.59 KB
安装次数 415
当前版本 1.1.1
更新时间 2023-06-22
上架时间 2021-08-03
开发者 Haruya Nakamura
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/hareruya-maro/github-issue-copy-extention
帮助页面URL https://github.com/hareruya-maro/github-issue-copy-extention
支持的语言 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"
    ]
}