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
官方網址 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"
    ]
}