ReportJ
The reporting helper for JIRA system.
ReportJとは何ですか?
ReportJはmishani0x0efによって開発されたChromeの拡張機能で、その主な機能は「The reporting helper for JIRA system.」です。
拡張機能のスクリーンショット
ReportJ拡張機能のCRXファイルをダウンロード
ReportJ拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Designed to improve reporting experience inside JIRA system. Main features: reporting templates; reporting based on commits (SVN, Git); close issue with reset remaining estimate. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |