Notion jira links

Makes jira links in notion appear as in confluence

Notion jira linksとは何ですか?

Notion jira linksはjperelliによって開発されたChromeの拡張機能で、その主な機能は「Makes jira links in notion appear as in confluence」です。

拡張機能のスクリーンショット

screenshot
screenshot

Notion jira links拡張機能のCRXファイルをダウンロード

Notion jira links拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Whenever you paste a link of a jira issue, for example https://xxxxx.atlassian.net/browse/XXXX-3242 in a notion article / note, the link will be replaced by a preview of the link similar to what confluence shows when you paste a jira link there.

The preview of the link shows `img id: title [status]`, for example `⚡ CORE-1234: Improve profile listing [TO DO]`, and will be clickable with a link to the jira issue

This extension will make an api request to jira per each link found in current notion page, to get more information on the link jira id.

In order for it to work you must be loggedin to your jira account and set your jira url in the popup when clicking the extension icon.                    

拡張機能の基本情報

名前 Notion jira links Notion jira links
ID blfhkboapfnblaoflpajppaofdjjnpdi
公式URL https://chrome.google.com/webstore/detail/notion-jira-links/blfhkboapfnblaoflpajppaofdjjnpdi
説明 Makes jira links in notion appear as in confluence
ファイルサイズ 19.09 KB
インストール数 54
現在のバージョン 1.0.0
最終更新日 2021-08-12
公開日 2021-08-12
開発者 jperelli
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/jperelli/notion-jira-link-chrome-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion jira links",
    "version": "1.0.0",
    "description": "Makes jira links in notion appear as in confluence",
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/popup.html",
        "default_title": "Notion jira links"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.notion.so\/*",
        "https:\/\/*.atlassian.net\/",
        "https:\/\/*.jira.com\/",
        "http:\/\/*.atlassian.net\/",
        "http:\/\/*.jira.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "icons": {
        "16": "\/assets\/icon16.png",
        "32": "\/assets\/icon32.png",
        "48": "\/assets\/icon48.png",
        "128": "\/assets\/icon128.png"
    }
}