Linkedin Profile 2 PDF
Export Linkedin profile to PDF
Linkedin Profile 2 PDF란 무엇입니까?
Linkedin Profile 2 PDF은(는) vibeeHR - Dev Team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export Linkedin profile to PDF"입니다.
확장 프로그램 스크린샷
Linkedin Profile 2 PDF 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
ID | allfoihccnhpfhbgcifmgfamcjepkjac |
공식 URL | https://chrome.google.com/webstore/detail/linkedin-profile-2-pdf/allfoihccnhpfhbgcifmgfamcjepkjac |
설명 | Export Linkedin profile to PDF |
파일 크기 | 260 KB |
설치 횟수 | 112 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2020-01-05 |
출시 날짜 | 2020-01-05 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | vibeeHR - Dev Team |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } } |