Borealis Extension

This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.

Borealis Extension란 무엇입니까?

Borealis Extension은(는) borealis-extension-devs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance."입니다.

확장 프로그램 스크린샷

screenshot

Borealis Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This convenient extension allows users to quickly create records for individuals and organizations in Borealis. Its seamless data entry process saves time, improves productivity, and reduces the risk of transcription errors.

With just a few clicks, you can easily capture publicly available contact information for the boards of directors, executives, and government officials you need to engage with, so you can spend more time engaging with stakeholders and finding solutions, and less time manually entering data.                    

확장 프로그램 기본 정보

이름 Borealis Extension Borealis Extension
ID oobhnhfbpbjcloconjebjlifckieinao
공식 URL https://chromewebstore.google.com/detail/borealis-extension/oobhnhfbpbjcloconjebjlifckieinao
설명 This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.
파일 크기 53.34 MB
설치 횟수 112
현재 버전 2024.1.4
최근 업데이트 2024-02-14
출시 날짜 2023-12-19
평점 5.00/5 총 1 개의 평점
개발자 borealis-extension-devs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.boreal-is.com
도움말 페이지 URL https://helpdesk.boreal-is.com
개인정보 보호 정책 페이지 URL https://www.boreal-is.com/privacy-policy
지원되는 언어 en,fr,es,pt-PT,ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "2024.1.4",
    "minimum_chrome_version": "117",
    "default_locale": "en",
    "action": {
        "default_icon": "images\/borealis-icon.png"
    },
    "side_panel": {
        "default_path": "src\/popup\/index.html"
    },
    "icons": {
        "16": "images\/borealis-icon.png",
        "48": "images\/borealis-icon.png",
        "128": "images\/borealis-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                ".\/content_scripts\/content.js"
            ],
            "css": [
                ".\/assets\/content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "service.js",
        "type": "module"
    },
    "permissions": [
        "activeTab",
        "storage",
        "sidePanel"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.boreal-is.com\/*",
            "https:\/\/localhost\/*"
        ]
    }
}