Linkedin Profile 2 PDF

Export Linkedin profile to PDF

Co to jest Linkedin Profile 2 PDF?

Linkedin Profile 2 PDF to rozszerzenie Chrome opracowane przez vibeeHR - Dev Team, a jego główną funkcją jest „Export Linkedin profile to PDF”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Linkedin Profile 2 PDF

Pobierz pliki rozszerzeń Linkedin Profile 2 PDF 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 extension allows Linkedin user to export any Linkedin profile to pdf, which is much better than the default Linkedin pdf exporting.

Updated in 1.0.1:
- Resize icon
- Add loading spinning icon
- Add instruction photo in popup html page
- Add option to include/exclude "Contact info" section when exporting a Linkedin profile to PDF                    

Podstawowe informacje o rozszerzeniu

Nazwa Linkedin Profile 2 PDF Linkedin Profile 2 PDF
ID allfoihccnhpfhbgcifmgfamcjepkjac
Oficjalny URL https://chrome.google.com/webstore/detail/linkedin-profile-2-pdf/allfoihccnhpfhbgcifmgfamcjepkjac
Opis Export Linkedin profile to PDF
Rozmiar pliku 260 KB
Liczba instalacji 112
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-01-05
Data Publikacji 2020-01-05
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper vibeeHR - Dev Team
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkedin Profile 2 PDF",
    "version": "1.0.1",
    "description": "Export Linkedin profile to PDF",
    "homepage_url": "https:\/\/vibeehr.com",
    "icons": {
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/in\/*\/detail\/contact-info\/"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "https:\/\/www.linkedin.com\/in\/*",
        "https:\/\/irisnguyen.top:9090\/*",
        "downloads",
        "downloads.open"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Linkedin Profile 2 PDF",
        "default_popup": "index.html"
    }
}