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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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/ |
URL страницы помощи | 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" ] } |