JiraLinks
Makes all external links in Jira open in a new tab.
JiraLinks là gì?
JiraLinks là một tiện ích mở rộng Chrome được phát triển bởi https://www.teamvvork.com, và tính năng chính của nó là "Makes all external links in Jira open in a new tab.".
Tải xuống tệp CRX của tiện ích mở rộng JiraLinks
Tải xuống các tệp mở rộng JiraLinks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | JiraLinks |
ID | fbnopccpenmheelimkgpboibmjakagle |
URL Chính Thức | https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle |
Mô tả | Makes all external links in Jira open in a new tab. |
Kích Thước Tệp | 59.36 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2017-01-13 |
Ngày Phát Hành | 2017-01-12 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://www.teamvvork.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.teamvvork.com |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |