Twitter account detector

This extension offers a quick way to show all twitter accounts from the page its on.

Cos'è Twitter account detector?

Twitter account detector è un'estensione di Chrome sviluppata da https://stapps.io, e la sua funzione principale è "This extension offers a quick way to show all twitter accounts from the page its on.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter account detector

Scarica i file di estensione Twitter account detector 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

                        This extension helps you find Twitter/X accounts for the page its on so you can contact or follow them easily. 
Unofficial extension.

Feel free to contribute with code or ideas:
https://github.com/stilliard/Twitter-detector                    

Informazioni di Base sull'Estensione

Nome Twitter account detector Twitter account detector
ID papcdbgfejihdinhieggiamjnkclhkck
URL Ufficiale https://chromewebstore.google.com/detail/twitter-account-detector/papcdbgfejihdinhieggiamjnkclhkck
Descrizione This extension offers a quick way to show all twitter accounts from the page its on.
Dimensione del File 988 KB
Conteggio Installazioni 1,247
Versione Corrente 3.0
Ultimo Aggiornamento 2023-12-05
Data di Pubblicazione 2020-03-17
Valutazione 4.64/5 Totale 14 Valutazioni
Sviluppatore https://stapps.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/stilliard/Twitter-detector
URL della Pagina di Aiuto https://github.com/stilliard/Twitter-detector
URL della Pagina della Politica sulla Privacy https://twitter.com/en/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter account detector",
    "description": "This extension offers a quick way to show all twitter accounts from the page its on.",
    "version": "3.0",
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "images\/icon-16x16.png",
            "48": "images\/icon-48x48.png",
            "128": "images\/icon-128x128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}