Borealis Extension

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

O que é Borealis Extension?

Borealis Extension é uma extensão do Chrome desenvolvida por borealis-extension-devs, e sua principal característica é "This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Borealis Extension

Baixe arquivos de extensão Borealis Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Borealis Extension Borealis Extension
ID oobhnhfbpbjcloconjebjlifckieinao
URL Oficial https://chromewebstore.google.com/detail/borealis-extension/oobhnhfbpbjcloconjebjlifckieinao
Descrição This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.
Tamanho do Arquivo 53.34 MB
Contagem de Instalações 112
Versão Atual 2024.1.4
Última Atualização 2024-02-14
Data de Publicação 2023-12-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor borealis-extension-devs
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.boreal-is.com
URL da Página de Ajuda https://helpdesk.boreal-is.com
URL da Página de Política de Privacidade https://www.boreal-is.com/privacy-policy
Idiomas Suportados 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\/*"
        ]
    }
}