JiraLinks
Makes all external links in Jira open in a new tab.
Cos'è JiraLinks?
JiraLinks è un'estensione di Chrome sviluppata da https://www.teamvvork.com, e la sua funzione principale è "Makes all external links in Jira open in a new tab.".
Scarica il file CRX dell'estensione JiraLinks
Scarica i file di estensione JiraLinks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | JiraLinks |
ID | fbnopccpenmheelimkgpboibmjakagle |
URL Ufficiale | https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle |
Descrizione | Makes all external links in Jira open in a new tab. |
Dimensione del File | 59.36 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2017-01-13 |
Data di Pubblicazione | 2017-01-12 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://www.teamvvork.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.teamvvork.com |
Lingue Supportate | 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'" } |