Extenddder - mark followers on Dribbble
See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.
Cos'è Extenddder - mark followers on Dribbble?
Extenddder - mark followers on Dribbble è un'estensione di Chrome sviluppata da Kostiantyn Plakhotia, e la sua funzione principale è "See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Extenddder - mark followers on Dribbble
Scarica i file di estensione Extenddder - mark followers on Dribbble in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ioijjabppmehamijninjlniklkdamhii |
URL Ufficiale | https://chrome.google.com/webstore/detail/extenddder-mark-followers/ioijjabppmehamijninjlniklkdamhii |
Descrizione | See who follows you on Dribbble. Green mark near follower's name in comments, shots, profiles etc. |
Dimensione del File | 44.78 KB |
Conteggio Installazioni | 56 |
Versione Corrente | 1.0.6 |
Ultimo Aggiornamento | 2016-12-17 |
Data di Pubblicazione | 2016-12-17 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | Kostiantyn Plakhotia |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |