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
Eメール [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"
    }
}