JIRA SubTask URL Redirection

disable event propagation for jira subtasks tags

Extension Screenshots

screenshot

Download JIRA SubTask URL Redirection Extension CRX File

Download JIRA SubTask URL Redirection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Basic Information

Name JIRA SubTask URL Redirection JIRA SubTask URL Redirection
ID pjacgdaobacpggolhhojjkikdngcfekb
Official URL https://chromewebstore.google.com/detail/jira-subtask-url-redirect/pjacgdaobacpggolhhojjkikdngcfekb
Description disable event propagation for jira subtasks tags
File Size 11.14 KB
Installation Count 438
Current Version 1.3.5
Last Updated 2020-03-04
Publish Date 2020-03-03
Rating 5.00/5 Total 1 Ratings
Developer xuezhouapplication
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}