Steemit UI/UX enhancement suite
This is a chrome extension to improve user experience and add some new neat features to existing steemit page.
Co to jest Steemit UI/UX enhancement suite?
Steemit UI/UX enhancement suite to rozszerzenie Chrome opracowane przez BeerCake, a jego główną funkcją jest „This is a chrome extension to improve user experience and add some new neat features to existing steemit page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Steemit UI/UX enhancement suite
Pobierz pliki rozszerzeń Steemit UI/UX enhancement suite 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
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
Podstawowe informacje o rozszerzeniu
Nazwa | Steemit UI/UX enhancement suite |
ID | nilebkfchinbmoiackakfpjhfchdpcgc |
Oficjalny URL | https://chromewebstore.google.com/detail/steemit-uiux-enhancement/nilebkfchinbmoiackakfpjhfchdpcgc |
Opis | This is a chrome extension to improve user experience and add some new neat features to existing steemit page. |
Rozmiar pliku | 192 KB |
Liczba instalacji | 52 |
Aktualna Wersja | 0.0.1.6 |
Ostatnia Aktualizacja | 2018-04-04 |
Data Publikacji | 2018-04-04 |
Ocena | 4.75/5 Łącznie 4 Oceny |
Deweloper | BeerCake |
Typ Płatności | free |
Strona Rozszerzenia | https://www.steemit.com/@beercake |
Obsługiwane Języki | 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 } |