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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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