News Feed Eradicator for LinkedIn

Find yourself spending too much time on LinkedIn? Eradicate distractions by replacing your entire news feed with an inspiring quote.

News Feed Eradicator for LinkedInとは何ですか?

News Feed Eradicator for LinkedInはTQによって開発されたChromeの拡張機能で、その主な機能は「Find yourself spending too much time on LinkedIn? Eradicate distractions by replacing your entire news feed with an inspiring quote.」です。

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

screenshot

News Feed Eradicator for LinkedIn拡張機能のCRXファイルをダウンロード

News Feed Eradicator for LinkedIn拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Find yourself spending too much time on LinkedIn? Eradicate distractions by replacing your entire news feed with an inspiring quote.

Do you often want to check LinkedIn, and then find yourself disappearing for hours as you are consumed by the bottomless pit that is the News Feed? Do you want your life back, but can't bear to delete Facebook altogether?

Enter; News Feed Eradicator for LinkedIn. Your life will never be the same again.

News Feed Eradicator for LinkedIn removes your news feed (and live ticker) and replaces it instead with an inspirational quote.

Credit to the original News Feed Eradicator for Facebook: https://chrome.google.com/webstore/detail/news-feed-eradicator-for/fjcldmjmjhkklehbacihaiopjklihlgg?hl=en                    

拡張機能の基本情報

名前 News Feed Eradicator for LinkedIn News Feed Eradicator for LinkedIn
ID imnflflfleoebjmgheadhhjboofoocln
公式URL https://chromewebstore.google.com/detail/news-feed-eradicator-for/imnflflfleoebjmgheadhhjboofoocln
説明 Find yourself spending too much time on LinkedIn? Eradicate distractions by replacing your entire news feed with an inspiring quote.
ファイルサイズ 34.25 KB
インストール数 255
現在のバージョン 1.0.0
最終更新日 2020-07-25
公開日 2020-07-25
評価 2.25/5 合計 4 レビュー
開発者 TQ
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tomquirk/news-feed-eradicator
ヘルプページのURL https://github.com/tomquirk/news-feed-eradicator/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "News Feed Eradicator for LinkedIn",
    "version": "1.0.0",
    "description": "Find yourself spending too much time on LinkedIn? Eradicate distractions by replacing your entire news feed with an inspiring quote.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "https:\/\/www.linkedin.com\/*",
        "http:\/\/www.linkedin.com\/*"
    ],
    "icons": {
        "16": "icon16.jpg",
        "48": "icon48.jpg",
        "128": "icon128.jpg"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "@news-feed-eradicator"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*",
                "http:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "intercept.js"
            ],
            "css": [
                "eradicate.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*",
                "http:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "eradicate.js"
            ],
            "css": [
                "eradicate.css"
            ],
            "run_at": "document_idle"
        }
    ]
}