Open link in new tab

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

Open link in new tab là gì?

Open link in new tab là một tiện ích mở rộng Chrome được phát triển bởi Naren, và tính năng chính của nó là "This extension forces links in a page to open in new tab.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open link in new tab

Tải xuống các tệp mở rộng Open link in new tab 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
URL Chính Thức https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
Mô tả This extension forces links in a page to open in new tab.
Kích Thước Tệp 86.17 KB
Số Lần Cài Đặt 4,000
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2015-03-05
Ngày Phát Hành 2015-03-05
Đánh Giá 3.24/5 Tổng số 42 Đánh Giá
Nhà Phát Triển Naren
Loại Thanh Toán free
Trang Web Mở Rộng http://twitter.com/narens
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}