Twitter Bot Hider
Hides twitter bots from your timeline.
Co to jest Twitter Bot Hider?
Twitter Bot Hider to rozszerzenie Chrome opracowane przez Ebu, a jego główną funkcją jest „Hides twitter bots from your timeline.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter Bot Hider
Pobierz pliki rozszerzeń Twitter Bot Hider 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
                        Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.
The source code can be found here: https://github.com/EbuOgden/TwitterBotHider                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | efpmoenhggjbiaeomapapohigijbobgb | 
| Oficjalny URL | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb | 
| Opis | Hides twitter bots from your timeline. | 
| Rozmiar pliku | 40.87 KB | 
| Liczba instalacji | 33 | 
| Aktualna Wersja | 0.1.1 | 
| Ostatnia Aktualizacja | 2022-10-31 | 
| Data Publikacji | 2022-10-31 | 
| Ocena | 5.00/5 Łącznie 3 Oceny | 
| Deweloper | Ebu | 
| [email protected] | |
| Typ Płatności | free | 
| Obsługiwane Języki | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Bot Hider",
    "version": "0.1.1",
    "description": "Hides twitter bots from your timeline.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/*.githubusercontent.com\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "Twitter Bot Hider",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}  |  |