View Other Facebook Photos

View facebook photos that aren't readily accessible.

Was ist View Other Facebook Photos?

View Other Facebook Photos ist eine Chrome-Erweiterung, die von Cambrian Labs entwickelt wurde, und ihr Hauptmerkmal ist "View facebook photos that aren't readily accessible.".

View Other Facebook Photos-Erweiterungs-CRX-Datei herunterladen

Laden Sie View Other Facebook Photos-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name View Other Facebook Photos View Other Facebook Photos
ID bhbccankdcgdojmbngaleaajnobibifp
Offizielle URL https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp
Beschreibung View facebook photos that aren't readily accessible.
Dateigröße 6.2 KB
Installationsanzahl 372
Aktuelle Version 1.1
Letztes Update 2018-02-10
Veröffentlichungsdatum 2018-02-10
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler Cambrian Labs
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}