Cloutception
Updates user
Was ist Cloutception?
Cloutception ist eine Chrome-Erweiterung, die von rocodesign entwickelt wurde, und ihr Hauptmerkmal ist "Updates user".
Erweiterungsscreenshots
Cloutception-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cloutception-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Cloutception displays aggregated blockchain data on bitclout.com, relevant to the creator page the user navigates to. * Flag creators who sold their coins The extension shows the amount a creator bought / sold immediately after navigating to a creator page * Show creator wallet Displays details about a creator wallet, list of wallet entries as well as an aggregation with the total market value of all entries * Show creator purchase history Displays a list of purchases and sells involving the creator coin with details on how the creator coin price was affected * Search by public key Enables users to search by entering a public key in the search field.
Grundlegende Informationen zur Erweiterung
Name | Cloutception |
ID | piibkonaoihcgbfhbjbjpldfhhdnapjk |
Offizielle URL | https://chromewebstore.google.com/detail/cloutception/piibkonaoihcgbfhbjbjpldfhhdnapjk |
Beschreibung | Updates user |
Dateigröße | 251 KB |
Installationsanzahl | 20 |
Aktuelle Version | 0.5.0 |
Letztes Update | 2021-05-12 |
Veröffentlichungsdatum | 2021-05-12 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | rocodesign |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://cloutception.club |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloutception", "description": "Updates user ", "version": "0.5.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.bitclout.com\/*" ], "js": [ "index.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "permissions": [ "webNavigation", "tabs" ], "icons": { "16": "\/Cloutception-16.png", "32": "\/Cloutception-32.png", "48": "\/Cloutception-48.png", "128": "\/Cloutception-128.png" } } |