Ticket Templates for JIRA
This addon inserts templates easily into textfields. It supports autofill, quickfill, sharing and many more.
Ticket Templates for JIRA란 무엇입니까?
Ticket Templates for JIRA은(는) Steven Herrmann에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This addon inserts templates easily into textfields. It supports autofill, quickfill, sharing and many more."입니다.
확장 프로그램 스크린샷
Ticket Templates for JIRA 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With Ticket Templates for JIRA you can create templates for user stories, bugs or comments you often need. This extension provides a autofill function, shortcut buttons and many more. ★ Key Features ★ ✔ autofill templates based on issuetype and project ✔ create custom templates for tickets or comments in JIRA, Trello, Asana ... ✔ inserting templates with quickaccess buttons, dropdown menu or right-click menu ✔ easy sharing your templates with your team via export and import via file or URL ✔ keep existing descriptions while inserting your template ✔ add templates for specific projects ✔ add custom ticket types ★ Permissions ★ No special permissions needed.
확장 프로그램 기본 정보
이름 | Ticket Templates for JIRA |
ID | inmachhhbcehlpklfjgenplmgffbiiaf |
공식 URL | https://chromewebstore.google.com/detail/ticket-templates-for-jira/inmachhhbcehlpklfjgenplmgffbiiaf |
설명 | This addon inserts templates easily into textfields. It supports autofill, quickfill, sharing and many more. |
파일 크기 | 1012 KB |
설치 횟수 | 1,955 |
현재 버전 | 1.9.3 |
최근 업데이트 | 2023-02-17 |
출시 날짜 | 2020-06-16 |
평점 | 4.50/5 총 8 개의 평점 |
개발자 | Steven Herrmann |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "Steven Herrmann", "name": "__MSG_general_app_name__", "default_locale": "en", "version": "1.9.3", "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "description": "__MSG_general_app_description__", "homepage_url": "https:\/\/gitlab.com\/browseraddons\/ticket-templates-for-jira\/", "short_name": "__MSG_general_app_short_name__", "permissions": [ "activeTab", "contextMenus", "storage", "scripting", "unlimitedStorage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "minimum_chrome_version": "93", "action": { "default_icon": { "16": "assets\/icons\/icon16.png", "32": "assets\/icons\/icon32.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "default_title": "__MSG_browser_ui_title_onhover__" }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "service_worker": "scripts\/background-service-worker.js" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentScript.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "assets\/icons\/icon16.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |