View Other Facebook Photos

View facebook photos that aren't readily accessible.

Cos'è View Other Facebook Photos?

View Other Facebook Photos è un'estensione di Chrome sviluppata da Cambrian Labs, e la sua funzione principale è "View facebook photos that aren't readily accessible.".

Scarica il file CRX dell'estensione View Other Facebook Photos

Scarica i file di estensione View Other Facebook Photos in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome View Other Facebook Photos View Other Facebook Photos
ID bhbccankdcgdojmbngaleaajnobibifp
URL Ufficiale https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp
Descrizione View facebook photos that aren't readily accessible.
Dimensione del File 6.2 KB
Conteggio Installazioni 372
Versione Corrente 1.1
Ultimo Aggiornamento 2018-02-10
Data di Pubblicazione 2018-02-10
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore Cambrian Labs
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}