Open in Brave Browser

Open current page, link, or all tabs in the Brave browser

Open in Brave Browser란 무엇입니까?

Open in Brave Browser은(는) brian.girko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open current page, link, or all tabs in the Brave browser"입니다.

확장 프로그램 스크린샷

screenshot

Open in Brave Browser 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Open current page, link, or all tabs in the Brave browser.
"Open in Brave" extension is meant to open the current tab or links inside the current tab in Brave browser. Using this extension you can send links to the Brave browser without the need to manually copy and paste links. This extension also offers open all tabs in the destination browser. Optionally you can close the tab that is opened in the destination browser too.

If a Brave instance is already opened, then the link is opened in a new browser tab, however, if Brave is not opened, a new Brave instance is opened and then the link is sent.

For FAQs please visit:
https://add0n.com/open-in.html

--- Note
1. For this extension to open links in the Brave browser you will need to install a minimal native client. The instruction to install the native client is displayed once a link opening is requested. There are two short video tutorials in the screenshot section for Windows, Linux, and Mac operation systems if you want to see the installation steps of the native client.

2. The native client currently only supports Mac, Windows and Linux operating systems. There is no support for other OSs at the moment.                    

확장 프로그램 기본 정보

이름 Open in Brave Browser Open in Brave Browser
ID mgmnomlncpmfgelhofilonnecmbdaoia
공식 URL https://chromewebstore.google.com/detail/open-in-brave-browser/mgmnomlncpmfgelhofilonnecmbdaoia
설명 Open current page, link, or all tabs in the Brave browser
파일 크기 92.14 KB
설치 횟수 10,215
현재 버전 0.1.3
최근 업데이트 2020-12-05
출시 날짜 2019-12-28
평점 3.69/5 총 13 개의 평점
개발자 brian.girko
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in Brave Browser",
    "description": "Open current page, link, or all tabs in the Brave browser",
    "version": "0.1.3",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "config.js",
            "common.js"
        ]
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "homepage_url": "https:\/\/add0n.com\/open-in.html?from=brave",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}