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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}