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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Linkedin Feed Sort By Recent 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"
    ]
}