JiraLinks

Makes all external links in Jira open in a new tab.

Co je JiraLinks?

JiraLinks je rozšíření Chrome vyvinuté https://www.teamvvork.com, a jeho hlavní funkcí je „Makes all external links in Jira open in a new tab.“.

Stáhnout soubor CRX rozšíření JiraLinks

Stáhněte si soubory rozšíření JiraLinks ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název JiraLinks JiraLinks
ID fbnopccpenmheelimkgpboibmjakagle
Oficiální URL https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle
Popis Makes all external links in Jira open in a new tab.
Velikost souboru 59.36 KB
Počet instalací 25
Aktuální Verze 0.4
Poslední Aktualizace 2017-01-13
Datum Vydání 2017-01-12
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://www.teamvvork.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://www.teamvvork.com
Podporované Jazyky 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'"
}