Jira print extension
This extension is to print tasks in Jira
Jira print extensionとは何ですか?
Jira print extensionはhttp://job-blog.bullgare.ruによって開発されたChromeの拡張機能で、その主な機能は「This extension is to print tasks in Jira」です。
Jira print extension拡張機能のCRXファイルをダウンロード
Jira print extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension is to print tasks in Jira.
v1.2 changelist:
css fixed: max height enlarged.
v1.1 changelist:
wiki markup in description field is partially supported. 拡張機能の基本情報
| 名前 | |
| ID | aegogmgcbaodohpidompbbmhhogmdmcl |
| 公式URL | https://chrome.google.com/webstore/detail/jira-print-extension/aegogmgcbaodohpidompbbmhhogmdmcl |
| 説明 | This extension is to print tasks in Jira |
| ファイルサイズ | 41.37 KB |
| インストール数 | 27 |
| 現在のバージョン | 1.2 |
| 最終更新日 | 2014-07-10 |
| 公開日 | 2014-07-10 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | http://job-blog.bullgare.ru |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jira print extension",
"description": "This extension is to print tasks in Jira",
"version": "1.2",
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"tabs",
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"libs\/jquery.js",
"libs\/wiki_to_html.js",
"content.js"
]
}
]
} | |