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 |
官方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" ] } |