Jira print extension
This extension is to print tasks in Jira
What is Jira print extension?
Jira print extension is a Chrome extension developed by http://job-blog.bullgare.ru, and its main feature is "This extension is to print tasks in Jira".
Download Jira print extension Extension CRX File
Download Jira print extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ![]() |
ID | aegogmgcbaodohpidompbbmhhogmdmcl |
Official URL | https://chrome.google.com/webstore/detail/jira-print-extension/aegogmgcbaodohpidompbbmhhogmdmcl |
Description | This extension is to print tasks in Jira |
File Size | 41.37 KB |
Installation Count | 27 |
Current Version | 1.2 |
Last Updated | 2014-07-10 |
Publish Date | 2014-07-10 |
Rating | 5.00/5 Total 4 Ratings |
Developer | http://job-blog.bullgare.ru |
Payment Type | free |
Supported Languages | 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" ] } ] } |