View Other Facebook Photos

View facebook photos that aren't readily accessible.

什麼是View Other Facebook Photos?

View Other Facebook Photos是由Cambrian Labs開發的Chrome擴展程式,該擴展的主要功能是“View facebook photos that aren't readily accessible.”。

下載View Other Facebook Photos擴展crx文件

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

擴展使用說明

                                            

擴展基本資訊

名稱 View Other Facebook Photos View Other Facebook Photos
ID bhbccankdcgdojmbngaleaajnobibifp
官方網址 https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp
簡介 View facebook photos that aren't readily accessible.
檔案大小 6.2 KB
安裝次數 372
目前版本 1.1
更新時間 2018-02-10
上架時間 2018-02-10
評分 1.00/5 共 2 次評分
開發者 Cambrian Labs
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View Other Facebook Photos",
    "description": "View facebook photos that aren't readily accessible.",
    "version": "1.1",
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "icons": {
        "16": "print_16x16.png",
        "48": "print_16x16.png",
        "128": "print_16x16.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Test Extension"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}