Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Open in new tab là gì?

Open in new tab là một tiện ích mở rộng Chrome được phát triển bởi Ramkumar K R, và tính năng chính của nó là "Open links in new tab for a list of specified domains. Useful for sites such as hackernews".

Ả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 in new tab

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

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

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

Tên Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
URL Chính Thức https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
Mô tả Open links in new tab for a list of specified domains. Useful for sites such as hackernews
Kích Thước Tệp 101 KB
Số Lần Cài Đặt 8,400
Phiên Bản Hiện Tại 0.0.15
Cập Nhật Lần Cuối 2020-05-21
Ngày Phát Hành 2020-05-21
Đánh Giá 3.56/5 Tổng số 54 Đánh Giá
Nhà Phát Triển Ramkumar K R
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}