Medium.com Follow Back Checker
Easily see which of your followers follow you on Medium.com
Medium.com Follow Back Checker란 무엇입니까?
Medium.com Follow Back Checker은(는) pizzaisdavid에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily see which of your followers follow you on Medium.com"입니다.
확장 프로그램 스크린샷
Medium.com Follow Back Checker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Medium.com Follow Back Checker |
ID | fbfndhfhlmfoibomlpeionegdedjgood |
공식 URL | https://chromewebstore.google.com/detail/mediumcom-follow-back-che/fbfndhfhlmfoibomlpeionegdedjgood |
설명 | Easily see which of your followers follow you on Medium.com |
파일 크기 | 161 KB |
설치 횟수 | 39 |
현재 버전 | 3.0.1 |
최근 업데이트 | 2023-08-23 |
출시 날짜 | 2022-09-22 |
평점 | 1.00/5 총 3 개의 평점 |
개발자 | pizzaisdavid |
이메일 | [email protected] |
결제 유형 | in_app |
개인정보 보호 정책 페이지 URL | https://pizzaisdavid.com/ppp-privacy-policy |
지원되는 언어 | 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": [] } |