Jira Snippet

Enhance your Jira experience with the Jira Snippet browser extension

Cos'è Jira Snippet?

Jira Snippet è un'estensione di Chrome sviluppata da daemonlibra, e la sua funzione principale è "Enhance your Jira experience with the Jira Snippet browser extension".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Jira Snippet

Scarica i file di estensione Jira Snippet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Jira Snippet Jira Snippet
ID ncdfcjgiincicfifodndidbdembfhpag
URL Ufficiale https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag
Descrizione Enhance your Jira experience with the Jira Snippet browser extension
Dimensione del File 33.56 KB
Conteggio Installazioni 591
Versione Corrente 2.1
Ultimo Aggiornamento 2023-08-18
Data di Pubblicazione 2022-01-31
Valutazione 4.40/5 Totale 5 Valutazioni
Sviluppatore daemonlibra
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/daemonLibra/JiraIssueCopyData
Lingue Supportate 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"
    ]
}