Jira Snippet

Enhance your Jira experience with the Jira Snippet browser extension

Jira Snippet란 무엇입니까?

Jira Snippet은(는) daemonlibra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance your Jira experience with the Jira Snippet browser extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Jira Snippet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Makes it possible to copy the jira issue id + title with one button

Jira Snippet is a browser extension that streamlines your Jira experience by allowing you to quickly copy issue information in a customizable format. It's easy to configure and enables you to choose what data you want to include when copying, such as issue title, ID, status, and more. The add-on integrates seamlessly with Jira Cloud and is compatible with Chrome, Firefox, Edge and Opera browsers.                    

확장 프로그램 기본 정보

이름 Jira Snippet Jira Snippet
ID ncdfcjgiincicfifodndidbdembfhpag
공식 URL https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag
설명 Enhance your Jira experience with the Jira Snippet browser extension
파일 크기 33.56 KB
설치 횟수 591
현재 버전 2.1
최근 업데이트 2023-08-18
출시 날짜 2022-01-31
평점 4.40/5 총 5 개의 평점
개발자 daemonlibra
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/daemonLibra/JiraIssueCopyData
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jira Snippet",
    "version": "2.1",
    "description": "Enhance your Jira experience with the Jira Snippet browser extension",
    "homepage_url": "https:\/\/github.com\/daemonLibra\/JiraIssueCopyData",
    "author": "https:\/\/github.com\/daemonLibra",
    "icons": {
        "48": "icons\/logo_48.png"
    },
    "action": {
        "default_icon": "icons\/logo_32.png",
        "default_title": "Jira Snippet",
        "default_popup": "popup\/info.html"
    },
    "background": {
        "service_worker": "scripts\/contextMenu.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.atlassian.net\/*",
                "*:\/\/*.atlassian.com\/*"
            ],
            "js": [
                "scripts\/storage-utils.js",
                "scripts\/settings.js",
                "scripts\/copybtn.js"
            ],
            "run_at": "document_start",
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ]
}