TwitFrens

Get mutual connections as a list on Twitter.

什么是TwitFrens?

TwitFrens是由Twitfrens开发的Chrome扩展程序,该扩展的主要功能是“Get mutual connections as a list on Twitter.”。

扩展截图

screenshot

下载TwitFrens扩展crx文件

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