Borealis Extension

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

Co to jest Borealis Extension?

Borealis Extension to rozszerzenie Chrome opracowane przez borealis-extension-devs, a jego główną funkcją jest „This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Borealis Extension

Pobierz pliki rozszerzeń Borealis Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Borealis Extension Borealis Extension
ID oobhnhfbpbjcloconjebjlifckieinao
Oficjalny URL https://chromewebstore.google.com/detail/borealis-extension/oobhnhfbpbjcloconjebjlifckieinao
Opis This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.
Rozmiar pliku 53.34 MB
Liczba instalacji 112
Aktualna Wersja 2024.1.4
Ostatnia Aktualizacja 2024-02-14
Data Publikacji 2023-12-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper borealis-extension-devs
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.boreal-is.com
Adres URL Strony Pomocy https://helpdesk.boreal-is.com
Adres URL Strony Polityki Prywatności https://www.boreal-is.com/privacy-policy
Obsługiwane Języki 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\/*"
        ]
    }
}