Notion jira links
Makes jira links in notion appear as in confluence
Τι είναι το Notion jira links;
Το Notion jira links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jperelli, και η κύρια λειτουργία του είναι "Makes jira links in notion appear as in confluence".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Notion jira links
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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" } } |