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ファイルをダウンロード

Jira Snippet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}