Distraction-free Facebook Chat UI

This extension hides everything on Facebook except for chat

什麼是Distraction-free Facebook Chat UI?

Distraction-free Facebook Chat UI是由http://wadehammes.com開發的Chrome擴展程式,該擴展的主要功能是“This extension hides everything on Facebook except for chat”。

擴展截圖

screenshot
screenshot

下載Distraction-free Facebook Chat UI擴展crx文件

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

擴展使用說明

                        This simple extension allows you to show and hide Facebook UI elements (currently the top blue-bar and the global container - newsfeed, profiles, etc.) so you can chat without the distraction of everything else.

To use: install the extension, browse to Facebook, and refresh. In the bottom right of the window next to chat, you should see a button labeled "Hide Facebook". Boom.

Note: names are hidden in extension screenshots for safety of those shown. The extension does not hide the names of those you are chatting with or in your friend list. That would be silly.

Changelog:
v.1.1.2 - updated right spacing of button to align better with new minified Facebook chat bar.

v1.1.1 - updated the extension to add an overlay instead of hiding elements with CSS. There was a big performance issue that I think this update will correct. Let me know if you are still experience Facebook running slower with this enabled!                    

擴展基本資訊

名稱 Distraction-free Facebook Chat UI Distraction-free Facebook Chat UI
ID bekopiljnnbamkegeidmbmbopennjgke
官方網址 https://chrome.google.com/webstore/detail/distraction-free-facebook/bekopiljnnbamkegeidmbmbopennjgke
簡介 This extension hides everything on Facebook except for chat
檔案大小 122 KB
安裝次數 188
目前版本 1.1.2
更新時間 2015-03-10
上架時間 2015-03-10
評分 4.86/5 共 7 次評分
開發者 http://wadehammes.com
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction-free Facebook Chat UI",
    "version": "1.1.2",
    "manifest_version": 2,
    "description": "This extension hides everything on Facebook except for chat",
    "homepage_url": "http:\/\/wadehammes.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/inject\/inject.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}