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
}