Eight Dollars
Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Hvad er Eight Dollars?
Eight Dollars er en Chrome-udvidelse udviklet af Walter Lim, og dens hovedfunktion er "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.".
Udvidelsesskærmbilleder
Download Eight Dollars-udvidelses-CRX-fil
Download Eight Dollars-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Eight Dollars |
ID | fjbponfbognnefnmbffcfllkibbbobki |
Officiel URL | https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki |
Beskrivelse | Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users. |
Filstørrelse | 3.25 MB |
Antal Installationer | 10,000 |
Nuværende Version | 2.0 |
Senest Opdateret | 2023-05-01 |
Udgivelsesdato | 2022-11-12 |
Bedømmelse | 4.48/5 Samlet 83 Bedømmelser |
Udvikler | Walter Lim |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/wseagar/eight-dollars |
Hjælpeside-URL | https://github.com/wseagar/eight-dollars |
Understøttede Sprog | 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" ] } |