Linkedin Feed Sort By Recent
Automatically set Sort by Recent on Linkedin feed.
ما هو Linkedin Feed Sort By Recent؟
Linkedin Feed Sort By Recent هو إضافة Chrome تم تطويرها بواسطة https://www.davideviolante.com، والميزة الرئيسية لها هي "Automatically set Sort by Recent on Linkedin feed.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Linkedin Feed Sort By Recent
قم بتنزيل ملفات الامتداد Linkedin Feed Sort By Recent بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Automatically change the sorting on Linkedin feed from Top to Recent. If it does not work at first try, reload the Linkedin page. To disable the extension behaviour completely is not enough to uninstall the extension, you also need to remove a cookie. Follow the istructions here: https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/blob/master/README.md#uninstall This extension is open source and you can contribute to make it better: https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent
معلومات أساسية عن التمديد
الاسم | |
ID | amcdflppdlgaejkildbondhbjojgkaai |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai |
الوصف | Automatically set Sort by Recent on Linkedin feed. |
حجم الملف | 13.46 KB |
عدد التثبيتات | 40 |
النسخة الحالية | 1.4 |
آخر تحديث | 2020-11-11 |
تاريخ النشر | 2020-04-25 |
المطور | https://www.davideviolante.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/DavideViolante/ |
عنوان صفحة المساعدة | https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Linkedin Feed Sort By Recent", "description": "Automatically set Sort by Recent on Linkedin feed.", "version": "1.4", "author": "Davide Violante", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_title": "" }, "permissions": [], "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "linkedinFeedSortByRecent.js" ] } ], "web_accessible_resources": [ "linkedinFeedSortByRecent.js" ] } |