Jira Snippet
Enhance your Jira experience with the Jira Snippet browser extension
Jira Snippet क्या है?
Jira Snippet daemonlibra द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhance your Jira experience with the Jira Snippet browser extension"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jira Snippet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Makes it possible to copy the jira issue id + title with one button Jira Snippet is a browser extension that streamlines your Jira experience by allowing you to quickly copy issue information in a customizable format. It's easy to configure and enables you to choose what data you want to include when copying, such as issue title, ID, status, and more. The add-on integrates seamlessly with Jira Cloud and is compatible with Chrome, Firefox, Edge and Opera browsers.
एक्सटेंशन की मूल जानकारी
नाम | Jira Snippet |
ID | ncdfcjgiincicfifodndidbdembfhpag |
आधिकारिक URL | https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag |
विवरण | Enhance your Jira experience with the Jira Snippet browser extension |
फ़ाइल का आकार | 33.56 KB |
स्थापना संख्या | 591 |
वर्तमान संस्करण | 2.1 |
अंतिम अपडेट | 2023-08-18 |
प्रकाशन तिथि | 2022-01-31 |
रेटिंग | 4.40/5 कुल 5 रेटिंग्स |
डेवलपर | daemonlibra |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/daemonLibra/JiraIssueCopyData |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jira Snippet", "version": "2.1", "description": "Enhance your Jira experience with the Jira Snippet browser extension", "homepage_url": "https:\/\/github.com\/daemonLibra\/JiraIssueCopyData", "author": "https:\/\/github.com\/daemonLibra", "icons": { "48": "icons\/logo_48.png" }, "action": { "default_icon": "icons\/logo_32.png", "default_title": "Jira Snippet", "default_popup": "popup\/info.html" }, "background": { "service_worker": "scripts\/contextMenu.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.atlassian.net\/*", "*:\/\/*.atlassian.com\/*" ], "js": [ "scripts\/storage-utils.js", "scripts\/settings.js", "scripts\/copybtn.js" ], "run_at": "document_start", "css": [ "css\/style.css" ] } ], "permissions": [ "storage", "contextMenus" ] } |