Linkedin Profile 2 PDF
Export Linkedin profile to PDF
ما هو Linkedin Profile 2 PDF؟
Linkedin Profile 2 PDF هو إضافة Chrome تم تطويرها بواسطة vibeeHR - Dev Team، والميزة الرئيسية لها هي "Export Linkedin profile to PDF".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Linkedin Profile 2 PDF
قم بتنزيل ملفات الامتداد Linkedin Profile 2 PDF بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |