Blue Check Hider
Identify and hide Twitter Blue users
Vad är Blue Check Hider?
Blue Check Hider är en Chrome-tillägg utvecklad av https://gsajith.com, och dess huvudfunktion är "Identify and hide Twitter Blue users".
Tilläggsskärmbilder
Ladda ner Blue Check Hider-förlängningens CRX-fil
Ladda ner Blue Check Hider-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | jhkoihkndkemdikaiafkiolgidghjfkl |
| Officiell webbadress | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
| Beskrivning | Identify and hide Twitter Blue users |
| Filstorlek | 497 KB |
| Antal Installationer | 611 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2023-05-05 |
| Publiceringsdatum | 2023-04-21 |
| Betyg | 4.25/5 Totalt 8 Betyg |
| Utvecklare | https://gsajith.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/gsajith/blue-check-hider |
| Hjälpsida URL | https://github.com/gsajith/blue-check-hider |
| Stödda Språk | 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"
}
} | |