BrightMove People Parser

This extension parses any relevant contact information on the current page into your BrightMove Account

Co to jest BrightMove People Parser?

BrightMove People Parser to rozszerzenie Chrome opracowane przez https://brightmove.com, a jego główną funkcją jest „This extension parses any relevant contact information on the current page into your BrightMove Account”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BrightMove People Parser

Pobierz pliki rozszerzeń BrightMove People Parser 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

                        Parse Applicants and Contacts into your BrightMove account on any page viewable in your browser.

This extension requires a BrightMove Account.  For more information, go to https://www.brightmove.com, or email [email protected].

Privacy Policy https://www.brightmove.com/privacy/                    

Podstawowe informacje o rozszerzeniu

Nazwa BrightMove People Parser BrightMove People Parser
ID hfhlaonfecodkkcdiapjfahnlgdecpcf
Oficjalny URL https://chromewebstore.google.com/detail/brightmove-people-parser/hfhlaonfecodkkcdiapjfahnlgdecpcf
Opis This extension parses any relevant contact information on the current page into your BrightMove Account
Rozmiar pliku 240 KB
Liczba instalacji 119
Aktualna Wersja 2.4.1
Ostatnia Aktualizacja 2023-07-21
Data Publikacji 2020-04-25
Ocena 4.64/5 Łącznie 11 Oceny
Deweloper https://brightmove.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.brightmove.com
Adres URL Strony Pomocy https://www.brightmove.com/privacy/
Adres URL Strony Polityki Prywatności https://www.brightmove.com/privacy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BrightMove People Parser",
    "short_name": "BM Parser",
    "description": "This extension parses any relevant contact information on the current page into your BrightMove Account",
    "version": "2.4.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "BrightMove People Parser"
    },
    "content_scripts": [
        {
            "js": [
                "angular.min.js",
                "angular-resource.min.js",
                "angular-animate.min.js",
                "angular-messages.min.js",
                "ui-bootstrap-tpls-2.1.4.min.js",
                "jquery-3.2.0.min.js",
                "js\/bmParserApp.js",
                "js\/popupController.js",
                "js\/copyData.js",
                "js\/lookupService.js"
            ],
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "angular.min.js",
            "angular-resource.min.js",
            "jquery-3.2.0.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "unlimitedStorage",
        "",
        "webRequest",
        "https:\/\/secure.brightmove.com\/",
        "https:\/\/app.brightmove.com\/",
        "https:\/\/*.linkedin.com\/"
    ]
}