MirrorMirror

Browse to any Facebook profile from a hotlinked Facebook picture.

What is MirrorMirror?

MirrorMirror is a Chrome extension developed by https://www.snowfensive.com, and its main feature is "Browse to any Facebook profile from a hotlinked Facebook picture.".

Download MirrorMirror Extension CRX File

Download MirrorMirror extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name MirrorMirror MirrorMirror
ID liaoagpefkeabpnhfifopcgejnginnib
Official URL https://chromewebstore.google.com/detail/mirrormirror/liaoagpefkeabpnhfifopcgejnginnib
Description Browse to any Facebook profile from a hotlinked Facebook picture.
File Size 249 KB
Installation Count 468
Current Version 1.4
Last Updated 2017-02-25
Publish Date 2017-02-24
Rating 3.00/5 Total 1 Ratings
Developer https://www.snowfensive.com
Email [email protected]
Payment Type free
Extension Website http://www.snowfensive.com/mirrormirror/
Help Page URL http://www.snowfensive.com/mirrormirror/
Supported Languages 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"
    ]
}