ReportJ
The reporting helper for JIRA system.
¿Qué es ReportJ?
ReportJ es una extensión de Chrome desarrollada por mishani0x0ef, y su función principal es "The reporting helper for JIRA system.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ReportJ
Descarga archivos de extensión ReportJ en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Designed to improve reporting experience inside JIRA system. Main features: reporting templates; reporting based on commits (SVN, Git); close issue with reset remaining estimate.
Información Básica de la Extensión
Nombre | ReportJ |
ID | hijbdbjoelgicnhnghhhlkpbhjdmchfg |
URL Oficial | https://chromewebstore.google.com/detail/reportj/hijbdbjoelgicnhnghhhlkpbhjdmchfg |
Descripción | The reporting helper for JIRA system. |
Tamaño del Archivo | 447 KB |
Cantidad de Instalaciones | 48 |
Versión Actual | 2.8.1 |
Última Actualización | 2023-07-26 |
Fecha de Publicación | 2018-05-20 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | mishani0x0ef |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/mishani0x0ef/ReportJ |
Idiomas Soportados | 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" ] } |