Photos Tagged

This extension will add a button on Facebook™ to show photos that the current profile was tagged in

Vad är Photos Tagged?

Photos Tagged är en Chrome-tillägg utvecklad av Ran Mariuma, och dess huvudfunktion är "This extension will add a button on Facebook™ to show photos that the current profile was tagged in".

Tilläggsskärmbilder

screenshot

Ladda ner Photos Tagged-förlängningens CRX-fil

Ladda ner Photos Tagged-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

                        This extension helps you find photos in Facebook™ of people by observing their friends' photos they were tagged in. Easily and free, just install the extension and click the new button on Facebook™ profile page, under photos ('Photos Tagged').

This is an open source extension and the source code is hosted in github:
https://github.com/maryum375/Photos-tagged                    

Grundläggande Information om Tillägg

Namn Photos Tagged Photos Tagged
ID ganlbkinkbapfndplimhpeajajmkbgno
Officiell webbadress https://chrome.google.com/webstore/detail/photos-tagged/ganlbkinkbapfndplimhpeajajmkbgno
Beskrivning This extension will add a button on Facebook™ to show photos that the current profile was tagged in
Filstorlek 7.08 KB
Antal Installationer 668
Aktuell Version 1.1.2
Senast Uppdaterad 2017-10-10
Publiceringsdatum 2017-10-10
Betyg 2.00/5 Totalt 4 Betyg
Utvecklare Ran Mariuma
Betalningssätt free
Tilläggswebbplats https://github.com/maryum375/Photos-tagged
Hjälpsida URL https://github.com/maryum375/Photos-tagged
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Photos Tagged",
    "short_name": "Photos Tagged",
    "description": "This extension will add a button on Facebook\u2122 to show photos that the current profile was tagged in",
    "version": "1.1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "addphotosofbutton.js"
            ],
            "run_at": "document_start"
        }
    ]
}