Jira Snippet
Enhance your Jira experience with the Jira Snippet browser extension
什麼是Jira Snippet?
Jira Snippet是由daemonlibra開發的Chrome擴展程式,該擴展的主要功能是“Enhance your Jira experience with the Jira Snippet browser extension”。
擴展截圖
下載Jira Snippet擴展crx文件
下載Jira Snippet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |