Medium.com Follow Back Checker
Easily see which of your followers follow you on Medium.com
O que é Medium.com Follow Back Checker?
Medium.com Follow Back Checker é uma extensão do Chrome desenvolvida por pizzaisdavid, e sua principal característica é "Easily see which of your followers follow you on Medium.com".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Medium.com Follow Back Checker
Baixe arquivos de extensão Medium.com Follow Back Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This program is an enhancement tool which allows you to see if the people that you follower are also following you. How to use: 1) Go to your profile page. 2) In the "Following" section, click "see all" 3) While the program is loading, there will be "loading" icons next to everyone's usernames. 4) Once all the data is loaded, the first few results should be displayed. 5) Purchased premium to see all of the results. Note: some times medium's internal website structure changes and this breaks the program. -- When this happens, I do fix it. But please verify that you are happy with the functionality of the program before purchasing premium.
Informações Básicas da Extensão
Nome | Medium.com Follow Back Checker |
ID | fbfndhfhlmfoibomlpeionegdedjgood |
URL Oficial | https://chromewebstore.google.com/detail/mediumcom-follow-back-che/fbfndhfhlmfoibomlpeionegdedjgood |
Descrição | Easily see which of your followers follow you on Medium.com |
Tamanho do Arquivo | 161 KB |
Contagem de Instalações | 39 |
Versão Atual | 3.0.1 |
Última Atualização | 2023-08-23 |
Data de Publicação | 2022-09-22 |
Classificação | 1.00/5 Total de 3 Avaliações |
Desenvolvedor | pizzaisdavid |
[email protected] | |
Tipo de Pagamento | in_app |
URL da Página de Política de Privacidade | https://pizzaisdavid.com/ppp-privacy-policy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Medium.com Follow Back Checker", "short_name": "Medium - Follow Checker", "description": "Easily see which of your followers follow you on Medium.com", "manifest_version": 3, "version": "3.0.1", "action": { "default_title": "Medium.com Follow Back Checker", "default_popup": "index.html" }, "icons": { "16": ".\/assets\/icons\/default\/16.png", "24": ".\/assets\/icons\/default\/24.png", "32": ".\/assets\/icons\/default\/32.png", "128": ".\/assets\/icons\/default\/128.png" }, "background": { "service_worker": "service-worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.medium.com\/*", "https:\/\/medium.com\/*" ], "js": [ ".\/content-script.js" ], "css": [ ".\/medium.css" ] } ], "permissions": [ "activeTab", "storage" ], "host_permissions": [] } |