Blue Check Hider
Identify and hide Twitter Blue users
Co to jest Blue Check Hider?
Blue Check Hider to rozszerzenie Chrome opracowane przez https://gsajith.com, a jego główną funkcją jest „Identify and hide Twitter Blue users”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Blue Check Hider
Pobierz pliki rozszerzeń Blue Check 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
This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.
You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jhkoihkndkemdikaiafkiolgidghjfkl |
| Oficjalny URL | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
| Opis | Identify and hide Twitter Blue users |
| Rozmiar pliku | 497 KB |
| Liczba instalacji | 611 |
| Aktualna Wersja | 1.3 |
| Ostatnia Aktualizacja | 2023-05-05 |
| Data Publikacji | 2023-04-21 |
| Ocena | 4.25/5 Łącznie 8 Oceny |
| Deweloper | https://gsajith.com |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/gsajith/blue-check-hider |
| Adres URL Strony Pomocy | https://github.com/gsajith/blue-check-hider |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Blue Check Hider",
"version": "1.3",
"description": "Identify and hide Twitter Blue users",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"js": [
".\/static\/js\/content.js"
],
"run_at": "document_end",
"matches": [
"https:\/\/*.twitter.com\/*",
"http:\/\/*.twitter.com\/*",
"https:\/\/twitter.com\/*",
"http:\/\/twitter.com\/*"
]
}
],
"background": {
"service_worker": ".\/static\/js\/background.js",
"type": "module"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_title": "Blue Check Hider"
}
} | |