Extenddder - mark followers on Dribbble

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

¿Qué es Extenddder - mark followers on Dribbble?

Extenddder - mark followers on Dribbble es una extensión de Chrome desarrollada por Kostiantyn Plakhotia, y su función principal es "See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Extenddder - mark followers on Dribbble

Descarga archivos de extensión Extenddder - mark followers on Dribbble en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Extenddder - mark followers on Dribbble Extenddder - mark followers on Dribbble
ID ioijjabppmehamijninjlniklkdamhii
URL Oficial https://chrome.google.com/webstore/detail/extenddder-mark-followers/ioijjabppmehamijninjlniklkdamhii
Descripción See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.
Tamaño del Archivo 44.78 KB
Cantidad de Instalaciones 56
Versión Actual 1.0.6
Última Actualización 2016-12-17
Fecha de Publicación 2016-12-17
Calificación 4.75/5 Total de 4 Calificaciones
Desarrollador Kostiantyn Plakhotia
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}