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
}