JIRA - Open external links in a new tab
JIRA - Open external links in a new tab
JIRA - Open external links in a new tabとは何ですか?
JIRA - Open external links in a new tabはClement Debiauneによって開発されたChromeの拡張機能で、その主な機能は「JIRA - Open external links in a new tab」です。
拡張機能のスクリーンショット
JIRA - Open external links in a new tab拡張機能のCRXファイルをダウンロード
JIRA - Open external links in a new tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Numerous users have requested this feature for JIRA but it has not - yet - landed on JIRA Cloud (https://jira.atlassian.com/browse/JRASERVER-9380). This is a tiny Chrome extension (less than 30 lines of code) - feedback is welcome!
Features
* JIRA Cloud (*.atlassian.net)
* Opens external links in a new tab
* Internal links between Atlassian products should not be affected
* Ignores `mailto:` links
Github: https://github.com/Unibozu/jira-new-tab 拡張機能の基本情報
| 名前 | |
| ID | dpnfbehbbngchomnngkdjopcnjhhlmep |
| 公式URL | https://chromewebstore.google.com/detail/jira-open-external-links/dpnfbehbbngchomnngkdjopcnjhhlmep |
| 説明 | JIRA - Open external links in a new tab |
| ファイルサイズ | 11.81 KB |
| インストール数 | 191 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2019-10-21 |
| 公開日 | 2019-10-21 |
| 評価 | 4.00/5 合計 2 レビュー |
| 開発者 | Clement Debiaune |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/Unibozu/jira-new-tab |
| ヘルプページのURL | https://github.com/Unibozu/jira-new-tab/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JIRA - Open external links in a new tab",
"version": "1.0",
"description": "JIRA - Open external links in a new tab",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/*.atlassian.net\/*"
],
"js": [
"content-script.js"
]
}
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
} | |