Copy JIRA ID
Copies JIRA ID.
¿Qué es Copy JIRA ID?
Copy JIRA ID es una extensión de Chrome desarrollada por https://adesh.dev, y su función principal es "Copies JIRA ID.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Copy JIRA ID
Descarga archivos de extensión Copy JIRA ID en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
TL;DR This extension adds a 'Copy JIRA ID' button (to copy the JIRA ID of course XD) Atlassian JIRA does not have an easy way to copy the JIRA ID. It was easier in old UX, but with the new UX, a lot of garbage is copied as well. They have a copy link button, but that wasn't really useful for me. I wrote this extension out of frustration, which adds a standalone button next to the JIRA ID, to save you from the hassle. Feel free to give it a try. I try my best to keep it updated to latest and also support old versions of JIRA. In case it does not work for you create an issue at https://github.com/AdeshAtole/copy-jira-id/issues/new OR drop a mail
Información Básica de la Extensión
Nombre | Copy JIRA ID |
ID | fiokagkoilhjielhjemghmnddbjbplln |
URL Oficial | https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln |
Descripción | Copies JIRA ID. |
Tamaño del Archivo | 9 KB |
Cantidad de Instalaciones | 65 |
Versión Actual | 0.1.6 |
Última Actualización | 2021-11-16 |
Fecha de Publicación | 2020-05-19 |
Calificación | 3.75/5 Total de 4 Calificaciones |
Desarrollador | https://adesh.dev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/AdeshAtole/copy-jira-id |
URL de la Página de Ayuda | https://github.com/AdeshAtole/copy-jira-id |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy JIRA ID", "version": "0.1.6", "description": "Copies JIRA ID.", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*.atlassian.net\/browse\/*", "https:\/\/*.atlassian.net\/browse\/*", "https:\/\/*.jira.com\/browse\/*" ], "js": [ "contentScript.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "icons": { "128": "icon_128.png" } } |