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 |
官方網址 | 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" ] } ] } |