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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον borealis-extension-devs, και η κύρια λειτουργία του είναι "This is a convenient extension designed to streamline and accelerate the process of creating individuals in a Borealis instance.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Borealis Extension

Λήψη αρχείων επέκτασης Borealis Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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\/*"
        ]
    }
}