Open Multiple Links

Select text with links and open them all in new tabs

什么是Open Multiple Links?

Open Multiple Links是由Marcin Jahn开发的Chrome扩展程序,该扩展的主要功能是“Select text with links and open them all in new tabs”。

扩展截图

screenshot

下载Open Multiple Links扩展crx文件

下载Open Multiple Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
官方URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
简介 Select text with links and open them all in new tabs
文件大小 22.89 KB
安装次数 2,362
当前版本 1.0.0
更新时间 2023-01-10
上架时间 2023-01-08
评分 1.67/5 共6次评分
开发者 Marcin Jahn
电子邮箱 [email protected]
付费类型 free
扩展官网 https://marcinjahn.com
帮助页面URL https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
支持的语言 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"
    }
}