Remove Twitter Views

Remove the Views button from Twitter

Co to jest Remove Twitter Views?

Remove Twitter Views to rozszerzenie Chrome opracowane przez Kabaj, a jego główną funkcją jest „Remove the 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

                        Removes the new "Views" button from Twitter


It is my first time doing a Chrome extension, so it might not be optimized at all and might stop working soon, I take all suggestions.
Here is the GitHub link to the extension : https://github.com/KabajSAH/Twitter-Remove-Views                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove Twitter Views Remove Twitter Views
ID flcjnidfibjigabnihmblehlkkeiganp
Oficjalny URL https://chromewebstore.google.com/detail/remove-twitter-views/flcjnidfibjigabnihmblehlkkeiganp
Opis Remove the Views button from Twitter
Rozmiar pliku 8.51 KB
Liczba instalacji 92
Aktualna Wersja 1.2.2
Ostatnia Aktualizacja 2023-01-17
Data Publikacji 2022-12-26
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Kabaj
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Twitter Views",
    "description": "Remove the Views button from Twitter",
    "version": "1.2.2",
    "author": "Kabaj",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    }
}