JiraLinks
Makes all external links in Jira open in a new tab.
O que é JiraLinks?
JiraLinks é uma extensão do Chrome desenvolvida por https://www.teamvvork.com, e sua principal característica é "Makes all external links in Jira open in a new tab.".
Baixar o arquivo CRX da Extensão JiraLinks
Baixe arquivos de extensão JiraLinks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
One of the most infuriating things about using Jira is the fact that external links don't open in a new tab. Atlassian has refused to add this as a setting or feature event though many have asked for it. This simple extension solves that issue for you by editing all external links in Jira to open in a new tab or window.
Informações Básicas da Extensão
Nome | JiraLinks |
ID | fbnopccpenmheelimkgpboibmjakagle |
URL Oficial | https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle |
Descrição | Makes all external links in Jira open in a new tab. |
Tamanho do Arquivo | 59.36 KB |
Contagem de Instalações | 25 |
Versão Atual | 0.4 |
Última Atualização | 2017-01-13 |
Data de Publicação | 2017-01-12 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://www.teamvvork.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.teamvvork.com |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JiraLinks", "description": "Makes all external links in Jira open in a new tab.", "version": "0.4", "permissions": [], "icons": { "16": "\/img\/icon16.png", "48": "\/img\/icon48.png", "128": "\/img\/icon128.png" }, "browser_action": { "default_icon": "\/img\/icon128.png", "default_popup": "home.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.atlassian.net\/*" ], "js": [ "\/js\/jquery-3.1.1.min.js", "content.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |