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”。
擴展截圖
下載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 |
ID | blfhkboapfnblaoflpajppaofdjjnpdi |
官方網址 | 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" } } |