Jira Dumb Links

Disable the Atlassian Jira smartlink feature

什么是Jira Dumb Links?

Jira Dumb Links是由Matt Korostoff开发的Chrome扩展程序,该扩展的主要功能是“Disable the Atlassian Jira smartlink feature”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Jira Dumb Links扩展crx文件

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

扩展使用说明

                        This plugin disables smart links in Atlassian products such as Jira and Confluence. Once it is installed, URLs will remain as you typed them, and will not be replaced by smart links. It will not remove smart links from content authored by other people, only for content authored by you in a browser with this plugin installed.

Smart links replace URLs in written comments with metadata about the linked document, such as the HTML page title. This is a bad feature of Jira. It makes written comments harder to understand, hides important information, and injects chaotic, irrelevant text into the middle of a sentence. This plugin removes the feature.                    

扩展基本信息

名称 Jira Dumb Links Jira Dumb Links
ID benhkamiokceniccopchdlkhcjaakpno
官方URL https://chromewebstore.google.com/detail/jira-dumb-links/benhkamiokceniccopchdlkhcjaakpno
简介 Disable the Atlassian Jira smartlink feature
文件大小 300 KB
安装次数 46
当前版本 0.1.0
更新时间 2022-11-09
上架时间 2022-11-05
开发者 Matt Korostoff
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/MKorostoff/jira-dumb-links
帮助页面URL https://github.com/MKorostoff/jira-dumb-links/issues
隐私政策页面URL https://github.com/MKorostoff/jira-dumb-links/blob/master/PRIVACY.md
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Dumb Links",
    "description": "Disable the Atlassian Jira smartlink feature",
    "version": "0.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "\/icons\/16x16.png",
        "32": "\/icons\/32x32.png",
        "48": "\/icons\/48x48.png",
        "128": "\/icons\/128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16x16.png",
            "32": "\/icons\/32x32.png",
            "48": "\/icons\/48x48.png",
            "128": "\/icons\/128x128.png"
        }
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/*.atlassian.net\/*"
    ]
}