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是由Kostiantyn Plakhotia开发的Chrome扩展程序,该扩展的主要功能是“See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.”。
扩展截图
下载Extenddder - mark followers on Dribbble扩展crx文件
下载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
扩展基本信息
名称 | |
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 } |