Messenger Only

Simplifies the html of the Messenger section in Facebook.

什麼是Messenger Only?

Messenger Only是由Anton Petrov (blz777)開發的Chrome擴展程式,該擴展的主要功能是“Simplifies the html of the Messenger section in Facebook.”。

下載Messenger Only擴展crx文件

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

擴展使用說明

                        Automatically removes the top blue bar of Facebook when you open the Facebook Messenger section (at facebook.com/messenger). A page refresh might be required.

Source: https://github.com/blz777/messenger_only/                    

擴展基本資訊

名稱 Messenger Only Messenger Only
ID pajmhgafdleolgnobmgphhbihoenekim
官方網址 https://chrome.google.com/webstore/detail/messenger-only/pajmhgafdleolgnobmgphhbihoenekim
簡介 Simplifies the html of the Messenger section in Facebook.
檔案大小 3.44 KB
安裝次數 114
目前版本 0.20
更新時間 2015-03-01
上架時間 2015-03-01
評分 4.00/5 共 4 次評分
開發者 Anton Petrov (blz777)
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Messenger Only",
    "description": "Simplifies the html of the Messenger section in Facebook.",
    "version": "0.20",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/messages\/*"
            ],
            "css": [
                "prepare.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.facebook.com\/messages\/*"
            ],
            "js": [
                "modifyPageContent.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}