HeJIRA (Beta)

A set of tools to automatize JIRA workflow

HeJIRA (Beta) क्या है?

HeJIRA (Beta) Xavi Colomer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A set of tools to automatize JIRA workflow"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HeJIRA (Beta) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        heJIRA Automation Tools for JIRA Workflow
===================================================

hejira. Any flight or journey to a more desirable or congenial place.

Having multiple people working on the same project is great because you always reach greater goals. On the other hand different people means different criteria and that translates to non consistent documentation, tickets, etc. Because people do not tend to follow the guidelines...

This extension allows you to add templates and validations to some forms before submit, to make sure there's only one criteria :)


IMPORTANT NOTE:
-----------------
This plugin has no relation with Atlassian company. Is a tool developed by an independent developer
to improve it's own workflow.

This plugin is a prototype and might be a little buggy. If you notice some wrong behaviour you only have to uninstall the extension and everything will work as always :)


What is this plugin?
------------------------
This plugin is a set of tools to improve developers and testers workflow using JIRA.
Right now allows you to create validation and prefill forms for defect and sub-tasks.


How can I install?
-----------------
You only have to go to the Chrome store and install the extension.


How does it work
-----------------
Add event listeners to the environment and reacts according to the user 
decisions.


More Information
-----------------
@xaviercolomer
http://xavicolomer.com                    

एक्सटेंशन की मूल जानकारी

नाम HeJIRA (Beta) HeJIRA (Beta)
ID miecliambfmbibhngdhdifobofglcfjo
आधिकारिक URL https://chromewebstore.google.com/detail/hejira-beta/miecliambfmbibhngdhdifobofglcfjo
विवरण A set of tools to automatize JIRA workflow
फ़ाइल का आकार 118 KB
स्थापना संख्या 16
वर्तमान संस्करण 0.2.4
अंतिम अपडेट 2015-03-10
प्रकाशन तिथि 2015-03-10
डेवलपर Xavi Colomer
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://xavicolomer.com/?utm_source=jiraplus&utm_medium=webstore&utm_campaign=promo
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HeJIRA (Beta)",
    "description": "A set of tools to automatize JIRA workflow",
    "version": "0.2.4",
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19.png",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "background",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "contextmenu\/contextmenu.js"
        ],
        "run_at": "document_end"
    },
    "options_page": "settings\/settings.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "script.js",
        "common\/js\/common.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ]
}