Facebook Redirect

Automatically redirects you to your messages page whenever you bring up facebook.

什麼是Facebook Redirect?

Facebook Redirect是由matthewmorrone開發的Chrome擴展程式,該擴展的主要功能是“Automatically redirects you to your messages page whenever you bring up facebook.”。

下載Facebook Redirect擴展crx文件

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

擴展使用說明

                                            

擴展基本資訊

名稱 Facebook Redirect Facebook Redirect
ID hlodpbnjcfkfnjoedpnkdnajkjkapmkk
官方網址 https://chromewebstore.google.com/detail/facebook-redirect/hlodpbnjcfkfnjoedpnkdnajkjkapmkk
簡介 Automatically redirects you to your messages page whenever you bring up facebook.
檔案大小 60.23 KB
安裝次數 23
目前版本 1.0.0
更新時間 2015-12-03
上架時間 2015-12-03
評分 5.00/5 共 3 次評分
開發者 matthewmorrone
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.github.com/matthewmorrone1/facebook-redirect
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Facebook Redirect",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "Automatically redirects you to your messages page whenever you bring up facebook.",
    "icons": {
        "16": "facebook-128.png",
        "48": "facebook-128.png",
        "128": "facebook-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*.facebook.com\/*"
    ]
}