TwitFrens

Get mutual connections as a list on Twitter.

TwitFrens란 무엇입니까?

TwitFrens은(는) Twitfrens에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get mutual connections as a list on Twitter."입니다.

확장 프로그램 스크린샷

screenshot

TwitFrens 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Find mutual followers on Twitter easily.

Twitfrens is a chrome extension for Twitter to help users find mutual followers with anyone. It's a tool that will help you find if you have a connection with any account on Twitter.

Mutual followers with an account are people that follow you and are followed by the account. Example: Account 1 has 1K followers and 500 followingd. Twitfrens will tell you among the 500 following, which accounts are following you as well.

It tells the user the first degree connection with any Twitter account.                    

확장 프로그램 기본 정보

이름 TwitFrens TwitFrens
ID bcpjnadjkokegkppfmacbmohjgjdbifn
공식 URL https://chromewebstore.google.com/detail/twitfrens/bcpjnadjkokegkppfmacbmohjgjdbifn
설명 Get mutual connections as a list on Twitter.
파일 크기 158 KB
설치 횟수 53
현재 버전 1.0.2
최근 업데이트 2022-11-10
출시 날짜 2022-11-10
평점 5.00/5 총 2 개의 평점
개발자 Twitfrens
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitfrens.webflow.io/
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TwitFrens",
    "description": "Get mutual connections as a list on Twitter.",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": ".\/icons\/icon16.png",
        "32": ".\/icons\/icon32.png",
        "128": ".\/icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": ".\/icons\/icon16.png",
            "32": ".\/icons\/icon32.png",
            "128": ".\/icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                ".\/content-script.js",
                ".\/tailwind.js"
            ],
            "css": [
                ".\/index.css"
            ]
        }
    ]
}