TwitFrens

Get mutual connections as a list on Twitter.

TwitFrensคืออะไร?

TwitFrens เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Twitfrens และคุณลักษณะหลักของมันคือ "Get mutual connections as a list on Twitter."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TwitFrens

ดาวน์โหลดไฟล์ส่วนขยาย TwitFrens ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}