News Feed Hider

Find yourself spending too much time online? Remove distractions by hiding your entire news feed or replacing it with a quote.

什麼是News Feed Hider?

News Feed Hider是由Steven Wingfelder開發的Chrome擴展程式,該擴展的主要功能是“Find yourself spending too much time online? Remove distractions by hiding your entire news feed or replacing it with a quote.”。

擴展截圖

screenshot

下載News Feed Hider擴展crx文件

下載News Feed Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        8-20-2020 : This app has been depricated since Facebook has changed their interface.

Hide the News Feed like it's 2005. Boost your productivity tenfold with this browser extension. It will completely remove your News Feed or replace it with an inspirational quote so you can finally get to that work you were meaning to do "tomorrow." 

You can still check your messages and notifications, post status updates, chat and do everything you could do before. Although now you won't get distracting News Feed posts that send you into a downward spiral of lurking your ex-girlfriend's  vacation pictures.

If the 100+ inspirational quotes aren't your thing you can personalize the message to anything you like. You can also set which days of the  week you want to block the News Feed as well as what time of day just in case you are in need of some weekend indulgences. 

I want to give credit to JDev who wrote the original code for this extension and allowed anyone to use it and improve on it. Thanks! Please check him out at west.io                    

擴展基本資訊

名稱 News Feed Hider News Feed Hider
ID bkbfafoelodldgihjdbknpnhgfdmffhl
官方網址 https://chromewebstore.google.com/detail/news-feed-hider/bkbfafoelodldgihjdbknpnhgfdmffhl
簡介 Find yourself spending too much time online? Remove distractions by hiding your entire news feed or replacing it with a quote.
檔案大小 282 KB
安裝次數 12
目前版本 1.2
更新時間 2020-08-21
上架時間 2017-06-13
評分 2.33/5 共 3 次評分
開發者 Steven Wingfelder
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "News Feed Hider",
    "options_page": "options.html",
    "version": "1.2",
    "description": "Find yourself spending too much time online? Remove distractions by hiding your entire news feed or replacing it with a quote.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "http:\/\/www.facebook.com\/*",
        "https:\/\/www.facebook.com\/*",
        "http:\/\/api.forismatic.com\/*",
        "http:\/\/forismatic.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "jquery.js",
                "hide.js"
            ],
            "css": [
                "hide.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "options.html"
    ]
}