ReportJ

The reporting helper for JIRA system.

Co to jest ReportJ?

ReportJ to rozszerzenie Chrome opracowane przez mishani0x0ef, a jego główną funkcją jest „The reporting helper for JIRA system.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ReportJ

Pobierz pliki rozszerzeń ReportJ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa ReportJ ReportJ
ID hijbdbjoelgicnhnghhhlkpbhjdmchfg
Oficjalny URL https://chromewebstore.google.com/detail/reportj/hijbdbjoelgicnhnghhhlkpbhjdmchfg
Opis The reporting helper for JIRA system.
Rozmiar pliku 447 KB
Liczba instalacji 48
Aktualna Wersja 2.8.1
Ostatnia Aktualizacja 2023-07-26
Data Publikacji 2018-05-20
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper mishani0x0ef
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mishani0x0ef/ReportJ
Obsługiwane Języki 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"
    ]
}