Open Links in New Tab

This extension allows you to decide which websites you want to automatically open in a new tab.

Open Links in New Tab là gì?

Open Links in New Tab là một tiện ích mở rộng Chrome được phát triển bởi Aran Sandhu, và tính năng chính của nó là "This extension allows you to decide which websites you want to automatically open in a new tab.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open Links in New Tab

Tải xuống các tệp mở rộng Open Links 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 allow you to create a list of websites so that whenever you click a link on one of those websites, the link will automatically open in a new tab. Perfect for websites like Google, Reddit, and YouTube.                    

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

Tên Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
URL Chính Thức https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
Mô tả This extension allows you to decide which websites you want to automatically open in a new tab.
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.05
Cập Nhật Lần Cuối 2020-08-18
Ngày Phát Hành 2018-08-07
Đánh Giá 2.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Aran Sandhu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open Links in New Tab",
    "description": "This extension allows you to decide which websites you want to automatically open in a new tab.",
    "version": "1.05",
    "author": "Aran Sandhu",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-3.3.1.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "jquery-3.3.1.js",
                "util.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}