Photos Tagged

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

Что такое Photos Tagged?

Photos Tagged - это расширение Chrome, разработанное Ran Mariuma, и его основная функция - "This extension will add a button on Facebook™ to show photos that the current profile was tagged in".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Photos Tagged

Скачайте файлы расширений Photos Tagged в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Photos Tagged Photos Tagged
ID ganlbkinkbapfndplimhpeajajmkbgno
Официальный URL https://chrome.google.com/webstore/detail/photos-tagged/ganlbkinkbapfndplimhpeajajmkbgno
Описание This extension will add a button on Facebook™ to show photos that the current profile was tagged in
Размер файла 7.08 KB
Количество установок 668
Текущая Версия 1.1.2
Последнее Обновление 2017-10-10
Дата публикации 2017-10-10
Рейтинг 2.00/5 Всего 4 оценок
Разработчик Ran Mariuma
Тип оплаты free
Официальный сайт расширения https://github.com/maryum375/Photos-tagged
URL страницы помощи https://github.com/maryum375/Photos-tagged
Поддерживаемые языки 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"
        }
    ]
}