Jira Snippet
Enhance your Jira experience with the Jira Snippet browser extension
What is Jira Snippet?
Jira Snippet is a Chrome extension developed by daemonlibra, and its main feature is "Enhance your Jira experience with the Jira Snippet browser extension".
Extension Screenshots
Download Jira Snippet Extension CRX File
Download Jira Snippet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Jira Snippet |
ID | ncdfcjgiincicfifodndidbdembfhpag |
Official URL | https://chromewebstore.google.com/detail/jira-snippet/ncdfcjgiincicfifodndidbdembfhpag |
Description | Enhance your Jira experience with the Jira Snippet browser extension |
File Size | 33.56 KB |
Installation Count | 591 |
Current Version | 2.1 |
Last Updated | 2023-08-18 |
Publish Date | 2022-01-31 |
Rating | 4.40/5 Total 5 Ratings |
Developer | daemonlibra |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/daemonLibra/JiraIssueCopyData |
Supported Languages | 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" ] } |