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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}