Linkedin Profile 2 PDF
Export Linkedin profile to PDF
Cos'è Linkedin Profile 2 PDF?
Linkedin Profile 2 PDF è un'estensione di Chrome sviluppata da vibeeHR - Dev Team, e la sua funzione principale è "Export Linkedin profile to PDF".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Linkedin Profile 2 PDF
Scarica i file di estensione Linkedin Profile 2 PDF in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | allfoihccnhpfhbgcifmgfamcjepkjac |
URL Ufficiale | https://chrome.google.com/webstore/detail/linkedin-profile-2-pdf/allfoihccnhpfhbgcifmgfamcjepkjac |
Descrizione | Export Linkedin profile to PDF |
Dimensione del File | 260 KB |
Conteggio Installazioni | 112 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2020-01-05 |
Data di Pubblicazione | 2020-01-05 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | vibeeHR - Dev Team |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |