Twitter account detector

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

Co to jest Twitter account detector?

Twitter account detector to rozszerzenie Chrome opracowane przez https://stapps.io, a jego główną funkcją jest „This extension offers a quick way to show all twitter accounts from the page its on.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitter account detector

Pobierz pliki rozszerzeń Twitter account detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitter account detector Twitter account detector
ID papcdbgfejihdinhieggiamjnkclhkck
Oficjalny URL https://chromewebstore.google.com/detail/twitter-account-detector/papcdbgfejihdinhieggiamjnkclhkck
Opis This extension offers a quick way to show all twitter accounts from the page its on.
Rozmiar pliku 988 KB
Liczba instalacji 1,247
Aktualna Wersja 3.0
Ostatnia Aktualizacja 2023-12-05
Data Publikacji 2020-03-17
Ocena 4.64/5 Łącznie 14 Oceny
Deweloper https://stapps.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/stilliard/Twitter-detector
Adres URL Strony Pomocy https://github.com/stilliard/Twitter-detector
Adres URL Strony Polityki Prywatności https://twitter.com/en/privacy
Obsługiwane Języki 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"
            ]
        }
    ]
}