Extenddder - mark followers on Dribbble

See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.

Что такое Extenddder - mark followers on Dribbble?

Extenddder - mark followers on Dribbble - это расширение Chrome, разработанное Kostiantyn Plakhotia, и его основная функция - "See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Extenddder - mark followers on Dribbble

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

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

                        Was you ever wondering if author of some amazing Dribbble shot follows you? Dribbble interface has no nice option for that, but with this extension you will see little green mark near any user that follows you.

Green mark "Follows you" appears on Dribbble pages:
• single user page
• single shot page
• users you follow page
• users/shots list pages
• comments section                    

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

Название Extenddder - mark followers on Dribbble Extenddder - mark followers on Dribbble
ID ioijjabppmehamijninjlniklkdamhii
Официальный URL https://chrome.google.com/webstore/detail/extenddder-mark-followers/ioijjabppmehamijninjlniklkdamhii
Описание See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.
Размер файла 44.78 KB
Количество установок 56
Текущая Версия 1.0.6
Последнее Обновление 2016-12-17
Дата публикации 2016-12-17
Рейтинг 4.75/5 Всего 4 оценок
Разработчик Kostiantyn Plakhotia
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extenddder - mark followers on Dribbble",
    "description": "See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.",
    "version": "1.0.6",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/dribbble.com\/*"
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content_script.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Dribbble Extender",
        "default_icon": "img\/icon.png"
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "web_accessible_resources": [
        "img\/marker.png"
    ],
    "manifest_version": 2
}