JIRA SubTask URL Redirection

disable event propagation for jira subtasks tags

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JIRA SubTask URL Redirection

Scarica i file di estensione JIRA SubTask URL Redirection 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.

Informazioni di Base sull'Estensione

Nome JIRA SubTask URL Redirection JIRA SubTask URL Redirection
ID pjacgdaobacpggolhhojjkikdngcfekb
URL Ufficiale https://chromewebstore.google.com/detail/jira-subtask-url-redirect/pjacgdaobacpggolhhojjkikdngcfekb
Descrizione disable event propagation for jira subtasks tags
Dimensione del File 11.14 KB
Conteggio Installazioni 438
Versione Corrente 1.3.5
Ultimo Aggiornamento 2020-03-04
Data di Pubblicazione 2020-03-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore xuezhouapplication
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA SubTask URL Redirection",
    "version": "1.3.5",
    "description": "disable event propagation for jira subtasks  tags",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/jira.netease.com\/browse\/*",
                "http:\/\/jira.netease.com\/projects\/JIRA\/issues\/*",
                "http:\/\/jira.netease.com\/issues\/*",
                "https:\/\/jira.mail.netease.com\/browse\/*",
                "https:\/\/jira.mail.netease.com\/projects\/*",
                "https:\/\/jira.mail.netease.com\/issues\/*"
            ],
            "js": [
                "propagation.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/doc.hz.netease.com\/*",
                "http:\/\/doc-demo.netease.com\/*"
            ],
            "all_frames": true,
            "css": [
                "Custom.css"
            ],
            "js": [
                "scrollTo.js"
            ],
            "run_at": "document_start"
        }
    ]
}