Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

Linkedin Feed Sort By Recent là gì?

Linkedin Feed Sort By Recent là một tiện ích mở rộng Chrome được phát triển bởi https://www.davideviolante.com, và tính năng chính của nó là "Automatically set Sort by Recent on Linkedin feed.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Linkedin Feed Sort By Recent

Tải xuống các tệp mở rộng Linkedin Feed Sort By Recent 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
URL Chính Thức https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Mô tả Automatically set Sort by Recent on Linkedin feed.
Kích Thước Tệp 13.46 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2020-11-11
Ngày Phát Hành 2020-04-25
Nhà Phát Triển https://www.davideviolante.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DavideViolante/
URL Trang Trợ Giúp https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}