Profile Picture UnBlock for Facebook

Extension unblocks protected profile pictures and makes them clickable

Was ist Profile Picture UnBlock for Facebook?

Profile Picture UnBlock for Facebook ist eine Chrome-Erweiterung, die von owlpostarun entwickelt wurde, und ihr Hauptmerkmal ist "Extension unblocks protected profile pictures and makes them clickable".

Profile Picture UnBlock for Facebook-Erweiterungs-CRX-Datei herunterladen

Laden Sie Profile Picture UnBlock for Facebook-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

                        STEPS TO USE:
1. Install extension
2. Reload Facebook page
3. Un-clickable profile picture is now clickable


Note: This extension does not collect any information from you whatsoever. Will opensource this after cleaning up the code.                    

Grundlegende Informationen zur Erweiterung

Name Profile Picture UnBlock for Facebook Profile Picture UnBlock for Facebook
ID fnanjnnchncdkfmjghfnkpaonepbopea
Offizielle URL https://chrome.google.com/webstore/detail/profile-picture-unblock-f/fnanjnnchncdkfmjghfnkpaonepbopea
Beschreibung Extension unblocks protected profile pictures and makes them clickable
Dateigröße 127 KB
Installationsanzahl 323
Aktuelle Version 2.0
Letztes Update 2015-01-17
Veröffentlichungsdatum 2015-01-17
Bewertung 2.00/5 Insgesamt 4 Bewertungen
Entwickler owlpostarun
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Profile Picture UnBlock for Facebook",
    "description": "Extension unblocks protected profile pictures and makes them clickable",
    "version": "2.0",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "short_name": "Pic Unblock",
    "web_accessible_resources": [
        "lightbox\/img\/close.png",
        "lightbox\/img\/loading.gif",
        "lightbox\/img\/next.png",
        "lightbox\/img\/prev.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "lightbox\/css\/lightbox.css"
            ],
            "js": [
                "lightbox\/js\/jquery-1.11.0.min.js",
                "lightbox\/js\/lightbox.js",
                "content.js"
            ]
        }
    ]
}