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"
        }
    ]
}