MirrorMirror

Browse to any Facebook profile from a hotlinked Facebook picture.

Was ist MirrorMirror?

MirrorMirror ist eine Chrome-Erweiterung, die von https://www.snowfensive.com entwickelt wurde, und ihr Hauptmerkmal ist "Browse to any Facebook profile from a hotlinked Facebook picture.".

MirrorMirror-Erweiterungs-CRX-Datei herunterladen

Laden Sie MirrorMirror-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

                        MirrorMirror allows a user to pivot from a hotlinked Facebook photo to the actual photo hosted on Facebook. MirrorMirror accomplishes this by searching a website after it has loaded for any pictures which have been hotlinked using Facebook’s Content Delivery Network (CDN). It then parses the photo ID out of the image URL and creates a link in the plug-in’s drop down display. Alternatively, a context menu is added when right-clicking on a hotlinked image allowing you to directly browse to that Facebook photo.                    

Grundlegende Informationen zur Erweiterung

Name MirrorMirror MirrorMirror
ID liaoagpefkeabpnhfifopcgejnginnib
Offizielle URL https://chromewebstore.google.com/detail/mirrormirror/liaoagpefkeabpnhfifopcgejnginnib
Beschreibung Browse to any Facebook profile from a hotlinked Facebook picture.
Dateigröße 249 KB
Installationsanzahl 468
Aktuelle Version 1.4
Letztes Update 2017-02-25
Veröffentlichungsdatum 2017-02-24
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler https://www.snowfensive.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.snowfensive.com/mirrormirror/
Hilfeseite URL http://www.snowfensive.com/mirrormirror/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MirrorMirror",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Browse to any Facebook profile from a hotlinked Facebook picture.",
    "homepage_url": "http:\/\/www.Snowfensive.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "MirrorMirror",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus"
    ]
}