ReportJ
The reporting helper for JIRA system.
Vad är ReportJ?
ReportJ är en Chrome-tillägg utvecklad av mishani0x0ef, och dess huvudfunktion är "The reporting helper for JIRA system.".
Tilläggsskärmbilder
Ladda ner ReportJ-förlängningens CRX-fil
Ladda ner ReportJ-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Designed to improve reporting experience inside JIRA system. Main features: reporting templates; reporting based on commits (SVN, Git); close issue with reset remaining estimate. Grundläggande Information om Tillägg
| Namn | |
| ID | hijbdbjoelgicnhnghhhlkpbhjdmchfg |
| Officiell webbadress | https://chromewebstore.google.com/detail/reportj/hijbdbjoelgicnhnghhhlkpbhjdmchfg |
| Beskrivning | The reporting helper for JIRA system. |
| Filstorlek | 447 KB |
| Antal Installationer | 48 |
| Aktuell Version | 2.8.1 |
| Senast Uppdaterad | 2023-07-26 |
| Publiceringsdatum | 2018-05-20 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | mishani0x0ef |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/mishani0x0ef/ReportJ |
| Stödda Språk | 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"
]
} | |