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 |
官方網址 | 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 } |