JIRA SubTask URL Redirection

disable event propagation for jira subtasks tags

Udvidelsesskærmbilleder

screenshot

Download JIRA SubTask URL Redirection-udvidelses-CRX-fil

Download JIRA SubTask URL Redirection-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Grundlæggende oplysninger om udvidelsen

Navn JIRA SubTask URL Redirection JIRA SubTask URL Redirection
ID pjacgdaobacpggolhhojjkikdngcfekb
Officiel URL https://chromewebstore.google.com/detail/jira-subtask-url-redirect/pjacgdaobacpggolhhojjkikdngcfekb
Beskrivelse disable event propagation for jira subtasks tags
Filstørrelse 11.14 KB
Antal Installationer 438
Nuværende Version 1.3.5
Senest Opdateret 2020-03-04
Udgivelsesdato 2020-03-03
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler xuezhouapplication
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}