JiraLinks
Makes all external links in Jira open in a new tab.
JiraLinksとは何ですか?
JiraLinksはhttps://www.teamvvork.comによって開発されたChromeの拡張機能で、その主な機能は「Makes all external links in Jira open in a new tab.」です。
JiraLinks拡張機能のCRXファイルをダウンロード
JiraLinks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        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.                     拡張機能の基本情報
| 名前 |   |  
| ID | fbnopccpenmheelimkgpboibmjakagle | 
| 公式URL | https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle | 
| 説明 | Makes all external links in Jira open in a new tab. | 
| ファイルサイズ | 59.36 KB | 
| インストール数 | 25 | 
| 現在のバージョン | 0.4 | 
| 最終更新日 | 2017-01-13 | 
| 公開日 | 2017-01-12 | 
| 評価 | 5.00/5 合計 2 レビュー | 
| 開発者 | https://www.teamvvork.com | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | http://www.teamvvork.com | 
| 対応言語 | 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'"
}  |  |