ReportJ

The reporting helper for JIRA system.

What is ReportJ?

ReportJ is a Chrome extension developed by mishani0x0ef, and its main feature is "The reporting helper for JIRA system.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download ReportJ Extension CRX File

Download ReportJ 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

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

Extension Basic Information

Name ReportJ ReportJ
ID hijbdbjoelgicnhnghhhlkpbhjdmchfg
Official URL https://chromewebstore.google.com/detail/reportj/hijbdbjoelgicnhnghhhlkpbhjdmchfg
Description The reporting helper for JIRA system.
File Size 447 KB
Installation Count 48
Current Version 2.8.1
Last Updated 2023-07-26
Publish Date 2018-05-20
Rating 5.00/5 Total 2 Ratings
Developer mishani0x0ef
Email [email protected]
Payment Type free
Extension Website https://github.com/mishani0x0ef/ReportJ
Supported Languages 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"
    ]
}