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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
                        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 | 
| البريد الإلكتروني | [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'"
}  |  |