Blue Check Hider
Identify and hide Twitter Blue users
Wat is Blue Check Hider?
Blue Check Hider is een Chrome-extensie ontwikkeld door https://gsajith.com, en de belangrijkste functie is "Identify and hide Twitter Blue users".
Extensie Screenshots
Download het CRX-bestand van de extensie Blue Check Hider
Download Blue Check Hider-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Blue Check Hider |
ID | jhkoihkndkemdikaiafkiolgidghjfkl |
Officiële URL | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
Beschrijving | Identify and hide Twitter Blue users |
Bestandsgrootte | 497 KB |
Aantal Installaties | 611 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2023-05-05 |
Publicatiedatum | 2023-04-21 |
Beoordeling | 4.25/5 Totaal 8 Beoordelingen |
Ontwikkelaar | https://gsajith.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/gsajith/blue-check-hider |
Help Pagina-URL | https://github.com/gsajith/blue-check-hider |
Ondersteunde Talen | 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" } } |