MirrorMirror

Browse to any Facebook profile from a hotlinked Facebook picture.

Vad är MirrorMirror?

MirrorMirror är en Chrome-tillägg utvecklad av https://www.snowfensive.com, och dess huvudfunktion är "Browse to any Facebook profile from a hotlinked Facebook picture.".

Ladda ner MirrorMirror-förlängningens CRX-fil

Ladda ner MirrorMirror-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn MirrorMirror MirrorMirror
ID liaoagpefkeabpnhfifopcgejnginnib
Officiell webbadress https://chromewebstore.google.com/detail/mirrormirror/liaoagpefkeabpnhfifopcgejnginnib
Beskrivning Browse to any Facebook profile from a hotlinked Facebook picture.
Filstorlek 249 KB
Antal Installationer 468
Aktuell Version 1.4
Senast Uppdaterad 2017-02-25
Publiceringsdatum 2017-02-24
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare https://www.snowfensive.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.snowfensive.com/mirrormirror/
Hjälpsida URL http://www.snowfensive.com/mirrormirror/
Stödda Språk 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"
    ]
}