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.
擴展基本資訊
名稱 | JiraLinks |
ID | fbnopccpenmheelimkgpboibmjakagle |
官方網址 | 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 |
電子郵箱 | [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'" } |