JIRA Template Injector (Autosync Templates)

The description field of new JIRA issues will automatically be populated with a template relevant to the issue type

JIRA Template Injector (Autosync Templates) là gì?

JIRA Template Injector (Autosync Templates) là một tiện ích mở rộng Chrome được phát triển bởi biideveloper121, và tính năng chính của nó là "The description field of new JIRA issues will automatically be populated with a template relevant to the issue type".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng JIRA Template Injector (Autosync Templates)

Tải xuống các tệp mở rộng JIRA Template Injector (Autosync Templates) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The description field of new JIRA issues will automatically be populated with a template relevant to the issue type
This extension automatically inserts a template of your choosing into the JIRA Create Issue Description field. The template injected is relative to the selected "Project" and “Issue Type” within the Create Issue modal on JIRA.

On initial install a default list of templates are pre populated for you. These can easily be removed/restored at any time.

By default the extension works for cloud hosted JIRA instances (*.atlassian.net domains). If you are using a self hosted JIRA instance or a custom domain, you may add your own custom domains for the extension to check against. You may also add any custom input IDs for which you would like your templates to be injected into.

You can add templates individually, or bulk add them through a local or remote json file. See Support & FAQ for an example JSON file.

Features:

* Automatically select text between 
     and  tags for quick template 
     completion.
     * Quickly jump to the next set of  
        elements using the 'Control + back-tick' 
        key combo.
* Template Priorities.
     * The default template (no Issue Type and 
        no Projects specified) will be used for all
        Issue Types and Projects.
     * Templates with Projects and no 
         Issue Type will override the default template.
     * Templates with Issue Type and no Projects
        will override templates with Projects and 
        no Issue Type.
     * Templates with Issue Type and Projects
        will override all other templates.
* Templates are synced across devices.
     * Configure once, use on all chrome 
        devices that support extensions!
* Reload default templates with one click.
* Load templates from url (json file). 
     * Host a single json file and have everyone 
        use the same templates.
* Load templates from local file (json). 
   Easily share templates with other users.
* Add/Remove/Edit individual templates.
* Add/Remove custom domains.
     * Domains (including subdomains) the extension 
        should run on to inject the templates.
* Limit interface options 
   (To keep templates consistent across users)
     * Current limit options are:
          * "all" -> disable all interface actions 
              except reload default
          * "url" -> disable loading of json 
              from url
          * "file" -> disable loading of json 
              from local file
          * "clear" -> disable clearing of 
              all templates
          * "delete" -> disable deleting 
              single template
          * "save" -> disable saving/updating 
              single template
          * "add" -> disable add new template 
              menu
          * "add-custom" -> disable adding 
              custom template
          * "add-default" -> disable adding 
              default template
          * "add-domain" -> disable adding 
              additional domains
* Export Templates to JSON file. Easily share 
    template JSON file.
* Sync templates from cloud using manage autosync settings
          * "add url" -> add url for syncing
          * "activate" -> use check box to activate and deactivate the template syncing
          * "download" -> download the template from cloud
          * "delete" -> remove the template from syncing                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JIRA Template Injector (Autosync Templates) JIRA Template Injector (Autosync Templates)
ID kpneknggffejdhpekdcfangbacpbmbpd
URL Chính Thức https://chromewebstore.google.com/detail/jira-template-injector-au/kpneknggffejdhpekdcfangbacpbmbpd
Mô tả The description field of new JIRA issues will automatically be populated with a template relevant to the issue type
Kích Thước Tệp 513 KB
Số Lần Cài Đặt 234
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-07-17
Ngày Phát Hành 2018-07-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển biideveloper121
Loại Thanh Toán free
Trang Web Mở Rộng http://jiratemplate.com/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Template Injector (Autosync Templates)",
    "author": "BuyItInstalled",
    "short_name": "JTI",
    "version": "1.0.0",
    "description": "The description field of new JIRA issues will automatically be populated with a template relevant to the issue type",
    "icons": {
        "16": "images\/JTI-16.png",
        "48": "images\/JTI-48.png",
        "64": "images\/JTI-64.png",
        "128": "images\/JTI-128.png"
    },
    "browser_action": {
        "default_icon": {
            "40": "images\/JTI-48.png",
            "48": "images\/JTI-48.png",
            "64": "images\/JTI-64.png",
            "128": "images\/JTI-128.png"
        },
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "lib\/jquery\/jquery-2.2.3.js",
            "js\/utils.js",
            "jti_background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery\/jquery-2.2.3.js",
                "js\/utils.js",
                "jti_content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "sandbox": {
        "pages": [
            "html\/sandbox.html"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*\/*.json",
        "https:\/\/*.pingstatsnet.com\/"
    ]
}