ReportJ

The reporting helper for JIRA system.

Cos'è ReportJ?

ReportJ è un'estensione di Chrome sviluppata da mishani0x0ef, e la sua funzione principale è "The reporting helper for JIRA system.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ReportJ

Scarica i file di estensione ReportJ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome ReportJ ReportJ
ID hijbdbjoelgicnhnghhhlkpbhjdmchfg
URL Ufficiale https://chromewebstore.google.com/detail/reportj/hijbdbjoelgicnhnghhhlkpbhjdmchfg
Descrizione The reporting helper for JIRA system.
Dimensione del File 447 KB
Conteggio Installazioni 48
Versione Corrente 2.8.1
Ultimo Aggiornamento 2023-07-26
Data di Pubblicazione 2018-05-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore mishani0x0ef
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mishani0x0ef/ReportJ
Lingue Supportate 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"
    ]
}