Distraction free for Linkedin™

Hide distractions on Linkedin™ when you need to focus.

Distraction free for Linkedin™คืออะไร?

Distraction free for Linkedin™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt Thurmond (Digital Detox NYC) และคุณลักษณะหลักของมันคือ "Hide distractions on Linkedin™ when you need to focus."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Distraction free for Linkedin™

ดาวน์โหลดไฟล์ส่วนขยาย Distraction free for Linkedin™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension hides potential distractions on LinkedIn™, including the newsfeed, suggested news, ads, and suggested people to follow. This lets you get in, get out, and get it done. 

This extension is free and opensource. It is is not affiliated with or produced by LinkedIn™. I've gotten a lot of value from LinkedIn™ in the past, and hope this extension will help you use it even more effectively. 

View the code on github:
https://github.com/mthurmond/distraction-free-for-linkedin

--> Try my other two extensions to remove distractions. Both are free & open source: 
- Hide My Email for Gmail™:  https://chrome.google.com/webstore/detail/gmail-inbox-hider/koobmglbcddgeoopgphanmhjppfaehaa?hl=en&authuser=0

- Slack Hider:  https://chrome.google.com/webstore/detail/slack-hider/ojfkenmmieminleikclgocedgpggeecp?hl=en&authuser=0                    

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

ชื่อ Distraction free for Linkedin™ Distraction free for Linkedin™
ID kigfnbfbpfpgphbocdkmeablbgdbpfke
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/distraction-free-for-link/kigfnbfbpfpgphbocdkmeablbgdbpfke
คำอธิบาย Hide distractions on Linkedin™ when you need to focus.
ขนาดไฟล์ 42.38 KB
จำนวนการติดตั้ง 277
เวอร์ชันปัจจุบัน 3.1
อัปเดตครั้งล่าสุด 2023-06-24
วันที่เผยแพร่ 2021-11-14
คะแนน 4.63/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Matt Thurmond (Digital Detox NYC)
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mthurmond/distraction-free-for-linkedin
URL หน้าช่วยเหลือ https://github.com/mthurmond/distraction-free-for-linkedin/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction free for Linkedin\u2122",
    "version": "3.1",
    "description": "Hide distractions on Linkedin\u2122 when you need to focus.",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "permissions": [],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "hider\/hider.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "hider\/hider-main.css",
                "hider\/hider-switch.css",
                "hider\/hider-newsfeed.css",
                "hider\/hider-network.css",
                "hider\/hider-jobs.css",
                "hider\/favicon-no-messages.ico"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ]
        }
    ]
}