Open Selected Links

Opens multiple links in the selected content in the current or new window or a tab group.

Open Selected Linksとは何ですか?

Open Selected LinksはNatarajan Krishnaswamiによって開発されたChromeの拡張機能で、その主な機能は「Opens multiple links in the selected content in the current or new window or a tab group.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Open Selected Links拡張機能のCRXファイルをダウンロード

Open Selected Links拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        When viewing a page containing a list of links you want to open, such as a list of references in Wikipedia or a paper, it's convenient to be able to open them all at once rather than opening and dragging one at a time.

This extension adds context menus item for selections to open all the links contained in them in the current window (optionally in a new tab group) or a new window.  

Alternatively, you can bring up the extension's popup menu to choose exactly which links to open (and now, you can also filter the link text with a regular expression!), whether to open them in the current or a new window, and whether to add them to a new or existing tab group. You can also open the tabs "snoozed" to reduce memory footprint prior to reading the tabs.

Finally, you can set up keyboard shortcuts to open selected links with a keystroke.                    

拡張機能の基本情報

名前 Open Selected Links Open Selected Links
ID hcihcignkpajeehfnomlncinacagapdf
公式URL https://chromewebstore.google.com/detail/open-selected-links/hcihcignkpajeehfnomlncinacagapdf
説明 Opens multiple links in the selected content in the current or new window or a tab group.
ファイルサイズ 14.2 KB
インストール数 3,341
現在のバージョン 1.7.3
最終更新日 2023-05-09
公開日 2020-11-03
評価 4.80/5 合計 10 レビュー
開発者 Natarajan Krishnaswami
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/nkrishnaswami/open-selected-links
ヘルプページのURL https://github.com/nkrishnaswami/open-selected-links/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Selected Links",
    "version": "1.7.3",
    "description": "Opens multiple links in the selected content in the current or new window or a tab group.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Open Selected Links"
    },
    "commands": {
        "osl_in_tabs": {
            "description": "Open selected links in new tabs in the current window"
        },
        "osl_in_window": {
            "description": "Open selected links in a new window"
        },
        "osl_in_tab_group": {
            "description": "Open selected links in a new tab group in the current window"
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting",
        "tabGroups"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}