Jira Snippet

Enhance your Jira experience with the Jira Snippet browser extension

Qu'est-ce que Jira Snippet ?

Jira Snippet est une extension Chrome développée par daemonlibra, et sa fonction principale est "Enhance your Jira experience with the Jira Snippet browser extension".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Jira Snippet

Téléchargez les fichiers d'extension Jira Snippet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Jira Snippet Jira Snippet
ID ncdfcjgiincicfifodndidbdembfhpag
URL Officiel https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag
Description Enhance your Jira experience with the Jira Snippet browser extension
Taille du Fichier 33.56 KB
Nombre d'Installations 591
Version Actuelle 2.1
Dernière Mise à Jour 2023-08-18
Date de Publication 2022-01-31
Évaluation 4.40/5 Total 5 Évaluations
Développeur daemonlibra
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/daemonLibra/JiraIssueCopyData
Langues Prises en Charge 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"
    ]
}