View Other Facebook Photos

View facebook photos that aren't readily accessible.

View Other Facebook Photos là gì?

View Other Facebook Photos là một tiện ích mở rộng Chrome được phát triển bởi Cambrian Labs, và tính năng chính của nó là "View facebook photos that aren't readily accessible.".

Tải xuống tệp CRX của tiện ích mở rộng View Other Facebook Photos

Tải xuống các tệp mở rộng View Other Facebook Photos dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên View Other Facebook Photos View Other Facebook Photos
ID bhbccankdcgdojmbngaleaajnobibifp
URL Chính Thức https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp
Mô tả View facebook photos that aren't readily accessible.
Kích Thước Tệp 6.2 KB
Số Lần Cài Đặt 372
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-02-10
Ngày Phát Hành 2018-02-10
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Cambrian Labs
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}