JIRA SubTask URL Redirection

disable event propagation for jira subtasks tags

扩展截图

screenshot

下载JIRA SubTask URL Redirection扩展crx文件

下载JIRA SubTask URL Redirection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展基本信息

名称 JIRA SubTask URL Redirection JIRA SubTask URL Redirection
ID pjacgdaobacpggolhhojjkikdngcfekb
官方URL https://chromewebstore.google.com/detail/jira-subtask-url-redirect/pjacgdaobacpggolhhojjkikdngcfekb
简介 disable event propagation for jira subtasks tags
文件大小 11.14 KB
安装次数 438
当前版本 1.3.5
更新时间 2020-03-04
上架时间 2020-03-03
评分 5.00/5 共1次评分
开发者 xuezhouapplication
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}