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

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

확장 프로그램 사용 설명서

                        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"
    }
}