View Other Facebook Photos

View facebook photos that aren't readily accessible.

Wat is View Other Facebook Photos?

View Other Facebook Photos is een Chrome-extensie ontwikkeld door Cambrian Labs, en de belangrijkste functie is "View facebook photos that aren't readily accessible.".

Download het CRX-bestand van de extensie View Other Facebook Photos

Download View Other Facebook Photos-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam View Other Facebook Photos View Other Facebook Photos
ID bhbccankdcgdojmbngaleaajnobibifp
Officiële URL https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp
Beschrijving View facebook photos that aren't readily accessible.
Bestandsgrootte 6.2 KB
Aantal Installaties 372
Huidige Versie 1.1
Laatst Bijgewerkt 2018-02-10
Publicatiedatum 2018-02-10
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Cambrian Labs
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}