Jira Snippet

Enhance your Jira experience with the Jira Snippet browser extension

Apa itu Jira Snippet?

Jira Snippet adalah ekstensi Chrome yang dikembangkan oleh daemonlibra, dan fitur utamanya adalah "Enhance your Jira experience with the Jira Snippet browser extension".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Jira Snippet

Unduh file ekstensi Jira Snippet dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Jira Snippet Jira Snippet
ID ncdfcjgiincicfifodndidbdembfhpag
URL Resmi https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag
Deskripsi Enhance your Jira experience with the Jira Snippet browser extension
Ukuran File 33.56 KB
Jumlah Instalasi 591
Versi Saat Ini 2.1
Terakhir Diperbarui 2023-08-18
Tanggal Publikasi 2022-01-31
Penilaian 4.40/5 Total 5 Penilaian
Pengembang daemonlibra
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/daemonLibra/JiraIssueCopyData
Bahasa yang Didukung 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"
    ]
}