Steemit UI/UX enhancement suite
This is a chrome extension to improve user experience and add some new neat features to existing steemit page.
Cos'è Steemit UI/UX enhancement suite?
Steemit UI/UX enhancement suite è un'estensione di Chrome sviluppata da BeerCake, e la sua funzione principale è "This is a chrome extension to improve user experience and add some new neat features to existing steemit page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Steemit UI/UX enhancement suite
Scarica i file di estensione Steemit UI/UX enhancement suite in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Features: - See post value in USD and the SP gained. - See SBD and STEEM prices on hover - Hide resteems in feeds and user profiles - See your voting power and expected recovery time. - Add people to whitelist and naughty to filter them out in feeds - Add people to naughty list to identify repeater offenders more easily Currently under active development. You can support me at : https://steemit.com/@beercake
Informazioni di Base sull'Estensione
Nome | Steemit UI/UX enhancement suite |
ID | nilebkfchinbmoiackakfpjhfchdpcgc |
URL Ufficiale | https://chromewebstore.google.com/detail/steemit-uiux-enhancement/nilebkfchinbmoiackakfpjhfchdpcgc |
Descrizione | This is a chrome extension to improve user experience and add some new neat features to existing steemit page. |
Dimensione del File | 192 KB |
Conteggio Installazioni | 52 |
Versione Corrente | 0.0.1.6 |
Ultimo Aggiornamento | 2018-04-04 |
Data di Pubblicazione | 2018-04-04 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | BeerCake |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.steemit.com/@beercake |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steemit UI\/UX enhancement suite", "description": "This is a chrome extension to improve user experience and add some new neat features to existing steemit page.", "version": "0.0.1.6", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "https:\/\/steemit.com\/*", "activeTab", "storage" ], "short_name": "SUIES", "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/steemit.com\/*" ], "js": [ "vendor\/jquery-1.12.4.min.js", "vendor\/underscore-min.js", "vendor\/jquery.initialize.min.js", "vendor\/steem.min.js", "SES.js" ], "css": [ "style.css" ], "permissions": [ "activeTab" ] } ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Steemit UI\/UX Enhancement Suite by @beercake", "default_icon": "icon.png", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "manifest_version": 2 } |