Linkedin Profile 2 PDF
Export Linkedin profile to PDF
Linkedin Profile 2 PDF là gì?
Linkedin Profile 2 PDF là một tiện ích mở rộng Chrome được phát triển bởi vibeeHR - Dev Team, và tính năng chính của nó là "Export Linkedin profile to PDF".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Linkedin Profile 2 PDF
Tải xuống các tệp mở rộng Linkedin Profile 2 PDF dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | allfoihccnhpfhbgcifmgfamcjepkjac |
URL Chính Thức | https://chrome.google.com/webstore/detail/linkedin-profile-2-pdf/allfoihccnhpfhbgcifmgfamcjepkjac |
Mô tả | Export Linkedin profile to PDF |
Kích Thước Tệp | 260 KB |
Số Lần Cài Đặt | 112 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2020-01-05 |
Ngày Phát Hành | 2020-01-05 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | vibeeHR - Dev Team |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |