LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
ما هو LinkedIn Extension؟
LinkedIn Extension هو إضافة Chrome تم تطويرها بواسطة LinkedIn، والميزة الرئيسية لها هي "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LinkedIn Extension
قم بتنزيل ملفات الامتداد LinkedIn Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Clicking on the extension's icon is also an easy way to take you directly to the LinkedIn website to view your new activity. Privacy Policy: https://www.linkedin.com/legal/privacy-policy By installing this extension, you agree to LinkedIn's User Agreement at https://www.linkedin.com/legal/user-agreement Please send any feedback to [email protected]
معلومات أساسية عن التمديد
الاسم | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
الوصف | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
حجم الملف | 14.99 KB |
عدد التثبيتات | 450,530 |
النسخة الحالية | 1.32 |
آخر تحديث | 2022-07-12 |
تاريخ النشر | 2018-07-27 |
تقييم | 4.30/5 مجموع تقييمات 364 |
المطور | |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.linkedin.com |
عنوان صفحة المساعدة | https://www.linkedin.com/legal/privacy-policy |
عنوان صفحة سياسة الخصوصية | https://www.linkedin.com/legal/privacy-policy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LinkedIn Extension", "description": "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.", "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "128": "li-icon.png" }, "content_security_policy": "script-src 'self' https:\/\/platform.linkedin.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "19": "li-icon19.png", "38": "li-icon38.png", "16": "li-icon16.png", "32": "li-icon32.png" } }, "permissions": [ "https:\/\/www.linkedin.com\/*" ], "version": "1.32" } |