Linkedin Profile 2 PDF
Export Linkedin profile to PDF
Vad är Linkedin Profile 2 PDF?
Linkedin Profile 2 PDF är en Chrome-tillägg utvecklad av vibeeHR - Dev Team, och dess huvudfunktion är "Export Linkedin profile to PDF".
Tilläggsskärmbilder
Ladda ner Linkedin Profile 2 PDF-förlängningens CRX-fil
Ladda ner Linkedin Profile 2 PDF-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | allfoihccnhpfhbgcifmgfamcjepkjac |
Officiell webbadress | https://chrome.google.com/webstore/detail/linkedin-profile-2-pdf/allfoihccnhpfhbgcifmgfamcjepkjac |
Beskrivning | Export Linkedin profile to PDF |
Filstorlek | 260 KB |
Antal Installationer | 112 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2020-01-05 |
Publiceringsdatum | 2020-01-05 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | vibeeHR - Dev Team |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |