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
官方URL 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"
        }
    ]
}