JIRA SubTask URL Redirection

disable event propagation for jira subtasks tags

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie JIRA SubTask URL Redirection

Download JIRA SubTask URL Redirection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Basisinformatie over de Extensie

Naam JIRA SubTask URL Redirection JIRA SubTask URL Redirection
ID pjacgdaobacpggolhhojjkikdngcfekb
Officiële URL https://chromewebstore.google.com/detail/jira-subtask-url-redirect/pjacgdaobacpggolhhojjkikdngcfekb
Beschrijving disable event propagation for jira subtasks tags
Bestandsgrootte 11.14 KB
Aantal Installaties 438
Huidige Versie 1.3.5
Laatst Bijgewerkt 2020-03-04
Publicatiedatum 2020-03-03
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar xuezhouapplication
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}