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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}