ReportJ

The reporting helper for JIRA system.

什么是ReportJ?

ReportJ是由mishani0x0ef开发的Chrome扩展程序,该扩展的主要功能是“The reporting helper for JIRA system.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载ReportJ扩展crx文件

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

扩展使用说明

                        Designed to improve reporting experience inside JIRA system. Main features: reporting templates; reporting based on commits (SVN, Git); close issue with reset remaining estimate.                    

扩展基本信息

名称 ReportJ ReportJ
ID hijbdbjoelgicnhnghhhlkpbhjdmchfg
官方URL https://chromewebstore.google.com/detail/reportj/hijbdbjoelgicnhnghhhlkpbhjdmchfg
简介 The reporting helper for JIRA system.
文件大小 447 KB
安装次数 48
当前版本 2.8.1
更新时间 2023-07-26
上架时间 2018-05-20
评分 5.00/5 共2次评分
开发者 mishani0x0ef
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mishani0x0ef/ReportJ
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ReportJ",
    "description": "The reporting helper for JIRA system.",
    "homepage_url": "https:\/\/github.com\/mishani0x0ef\/reportj",
    "version": "2.8.1",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "build\/manifest.js",
            "build\/vendor.js",
            "build\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "img\/logo.png",
        "default_title": "ReportJ",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/logo.png",
        "48": "img\/logo.png",
        "128": "img\/logo128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "build\/content.css"
            ],
            "js": [
                "build\/manifest.js",
                "build\/vendor.js",
                "build\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "options.html"
    ]
}