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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Extenddder - mark followers on Dribbble
قم بتنزيل ملفات الامتداد Extenddder - mark followers on Dribbble بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
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 } |