Extenddder - mark followers on Dribbble
See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.
What is Extenddder - mark followers on Dribbble?
Extenddder - mark followers on Dribbble is a Chrome extension developed by Kostiantyn Plakhotia, and its main feature is "See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.".
Extension Screenshots
Download Extenddder - mark followers on Dribbble Extension CRX File
Download Extenddder - mark followers on Dribbble extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ioijjabppmehamijninjlniklkdamhii |
Official URL | https://chrome.google.com/webstore/detail/extenddder-mark-followers/ioijjabppmehamijninjlniklkdamhii |
Description | See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc. |
File Size | 44.78 KB |
Installation Count | 56 |
Current Version | 1.0.6 |
Last Updated | 2016-12-17 |
Publish Date | 2016-12-17 |
Rating | 4.75/5 Total 4 Ratings |
Developer | Kostiantyn Plakhotia |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |