Pridify

Apply a pride filter to avatar images on popular websites.

Что такое Pridify?

Pridify - это расширение Chrome, разработанное http://truthful.technology, и его основная функция - "Apply a pride filter to avatar images on popular websites.".

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

screenshot
screenshot
screenshot

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

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

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

                        Need more pride in your feed?  Install Pridify to add a rainbow filter to every avatar in your feeds!

Currently supports:

- Facebook
- Twitter
- Google+
- Stack Overflow
- Ravelry
- Deviant Art

Source code available here: https://github.com/TruthfulTechnology/pridify

This is a fun extension created by Truthful Technology, LLC.                    

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

Название Pridify Pridify
ID mbhneikagebabkhalefcgoppfkkmoaca
Официальный URL https://chrome.google.com/webstore/detail/pridify/mbhneikagebabkhalefcgoppfkkmoaca
Описание Apply a pride filter to avatar images on popular websites.
Размер файла 5.73 KB
Количество установок 769
Текущая Версия 1.3
Последнее Обновление 2015-06-30
Дата публикации 2015-06-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик http://truthful.technology
Тип оплаты free
Официальный сайт расширения https://github.com/TruthfulTechnology/pridify
URL страницы помощи https://github.com/TruthfulTechnology/pridify/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pridify",
    "description": "Apply a pride filter to avatar images on popular websites.",
    "icons": {
        "128": "icon.png"
    },
    "version": "1.3",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/*.google.com\/*",
                "https:\/\/stackoverflow.com\/*",
                "*:\/\/*.deviantart.com\/*",
                "http:\/\/www.ravelry.com\/*"
            ],
            "js": [
                "pridify.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/www.facebook.com\/*",
        "https:\/\/twitter.com\/*",
        "https:\/\/*.google.com\/*",
        "https:\/\/stackoverflow.com\/*",
        "*:\/\/*.deviantart.com\/*",
        "http:\/\/www.ravelry.com\/*"
    ]
}