Open link in new tab

This extension forces links in a page to open in new tab.

ما هو Open link in new tab؟

Open link in new tab هو إضافة Chrome تم تطويرها بواسطة Naren، والميزة الرئيسية لها هي "This extension forces links in a page to open in new tab.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Open link in new tab

قم بتنزيل ملفات الامتداد Open link in new tab بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension will help you to force links in pages to be open in new tab. You can configure the urls in the options..

Change log:

Version 1.0.7:

Fixed a bug that prevented users from saving the options properly. Thanks to @joelw135                    

معلومات أساسية عن التمديد

الاسم Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
عنوان URL الرسمي https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
الوصف This extension forces links in a page to open in new tab.
حجم الملف 86.17 KB
عدد التثبيتات 4,000
النسخة الحالية 1.0.7
آخر تحديث 2015-03-05
تاريخ النشر 2015-03-05
تقييم 3.24/5 مجموع تقييمات 42
المطور Naren
نوع الدفع free
موقع الإضافة http://twitter.com/narens
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in new tab",
    "version": "1.0.7",
    "manifest_version": 2,
    "description": "This extension forces links in a page to open in new tab.",
    "author": "Narendran",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "http:\/\/twitter.com\/narens",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ]
}