Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

Linkedin Feed Sort By Recent란 무엇입니까?

Linkedin Feed Sort By Recent은(는) https://www.davideviolante.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically set Sort by Recent on Linkedin feed."입니다.

확장 프로그램 스크린샷

screenshot

Linkedin Feed Sort By Recent 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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                    

확장 프로그램 기본 정보

이름 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"
    ]
}