Distraction free for Linkedin™

Hide distractions on Linkedin™ when you need to focus.

Distraction free for Linkedin™とは何ですか?

Distraction free for Linkedin™はMatt Thurmond (Digital Detox NYC)によって開発されたChromeの拡張機能で、その主な機能は「Hide distractions on Linkedin™ when you need to focus.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Distraction free for Linkedin™拡張機能のCRXファイルをダウンロード

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)
Eメール [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\/*"
            ]
        }
    ]
}