TwitFrens

Get mutual connections as a list on Twitter.

Cos'è TwitFrens?

TwitFrens è un'estensione di Chrome sviluppata da Twitfrens, e la sua funzione principale è "Get mutual connections as a list on Twitter.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TwitFrens

Scarica i file di estensione TwitFrens in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TwitFrens TwitFrens
ID bcpjnadjkokegkppfmacbmohjgjdbifn
URL Ufficiale https://chromewebstore.google.com/detail/twitfrens/bcpjnadjkokegkppfmacbmohjgjdbifn
Descrizione Get mutual connections as a list on Twitter.
Dimensione del File 158 KB
Conteggio Installazioni 53
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-11-10
Data di Pubblicazione 2022-11-10
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Twitfrens
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://twitfrens.webflow.io/
Lingue Supportate 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"
            ]
        }
    ]
}