Open Multiple Links

Select text with links and open them all in new tabs

Open Multiple Links là gì?

Open Multiple Links là một tiện ích mở rộng Chrome được phát triển bởi Marcin Jahn, và tính năng chính của nó là "Select text with links and open them all in new tabs".

Ả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 Multiple Links

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

                        Highlight any text and open all the included links at once, in new tabs. Just select the text containing links, right-click it, and select "Open links in new tabs".

The right-click context menu entry for "Open links in new tabs" appears only when the selected text contains any links.

Note that this extension opens only "clickable" links. If a given link is just a text, it will not be included.                    

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

Tên Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
URL Chính Thức https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Mô tả Select text with links and open them all in new tabs
Kích Thước Tệp 22.89 KB
Số Lần Cài Đặt 2,362
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-01-10
Ngày Phát Hành 2023-01-08
Đánh Giá 1.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Marcin Jahn
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://marcinjahn.com
URL Trang Trợ Giúp https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Multiple Links",
    "description": "Select text with links and open them all in new tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}