Remove Twitter Views

Remove Views button from Twitter

Co to jest Remove Twitter Views?

Remove Twitter Views to rozszerzenie Chrome opracowane przez igorhaagrod, a jego główną funkcją jest „Remove Views button from Twitter”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Remove Twitter Views

Pobierz pliki rozszerzeń Remove Twitter Views 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

                        After Elon Musk completely destroyed Twitter, extensions like this are needed. The focus of this one is, for now, removing the "views" button from the web app.                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove Twitter Views Remove Twitter Views
ID nebfimpiljmmgfgaiaponfmcopndjkpg
Oficjalny URL https://chromewebstore.google.com/detail/remove-twitter-views/nebfimpiljmmgfgaiaponfmcopndjkpg
Opis Remove Views button from Twitter
Rozmiar pliku 7.8 KB
Liczba instalacji 171
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-12-25
Data Publikacji 2022-12-25
Ocena 4.73/5 Łącznie 11 Oceny
Deweloper igorhaagrod
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Twitter Views",
    "description": "Remove Views button from Twitter",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "remove-views.html",
        "default_icon": "icon32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}