ReportJ

The reporting helper for JIRA system.

ReportJ란 무엇입니까?

ReportJ은(는) mishani0x0ef에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The reporting helper for JIRA system."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ReportJ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}