JiraLinks
Makes all external links in Jira open in a new tab.
JiraLinksคืออะไร?
JiraLinks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.teamvvork.com และคุณลักษณะหลักของมันคือ "Makes all external links in Jira open in a new tab."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JiraLinks
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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'" } |