Eight Dollars
Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Co to jest Eight Dollars?
Eight Dollars to rozszerzenie Chrome opracowane przez Walter Lim, a jego główną funkcją jest „Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Eight Dollars
Pobierz pliki rozszerzeń Eight Dollars 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
Eight Dollars helps Twitter users differentiate between users that paid for verification and users that were given Twitter Verification. Got an idea for a feature or issues using the extension? Visit https://github.com/wseagar/eight-dollars/issues
Podstawowe informacje o rozszerzeniu
Nazwa | Eight Dollars |
ID | fjbponfbognnefnmbffcfllkibbbobki |
Oficjalny URL | https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki |
Opis | Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users. |
Rozmiar pliku | 3.25 MB |
Liczba instalacji | 10,000 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2023-05-01 |
Data Publikacji | 2022-11-12 |
Ocena | 4.48/5 Łącznie 83 Oceny |
Deweloper | Walter Lim |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/wseagar/eight-dollars |
Adres URL Strony Pomocy | https://github.com/wseagar/eight-dollars |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Eight Dollars", "version": "2.0", "description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.", "icons": { "16": ".\/assets\/16.png", "32": ".\/assets\/32.png", "48": ".\/assets\/48.png", "256": ".\/assets\/256.png", "512": ".\/assets\/512.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "script.js", "search.js", "data\/verified.txt" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] } ], "action": { "default_icon": { "16": ".\/assets\/16.png", "32": ".\/assets\/32.png" }, "default_title": "Eight Dollars - Options", "default_popup": "options\/options.html" }, "permissions": [ "storage" ] } |