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 je Steemit UI/UX enhancement suite?
Steemit UI/UX enhancement suite je rozšíření Chrome vyvinuté BeerCake, a jeho hlavní funkcí je „This is a chrome extension to improve user experience and add some new neat features to existing steemit page.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Steemit UI/UX enhancement suite
Stáhněte si soubory rozšíření Steemit UI/UX enhancement suite ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 Základní Informace o Rozšíření
| Název | |
| ID | nilebkfchinbmoiackakfpjhfchdpcgc |
| Oficiální URL | https://chromewebstore.google.com/detail/steemit-uiux-enhancement/nilebkfchinbmoiackakfpjhfchdpcgc |
| Popis | This is a chrome extension to improve user experience and add some new neat features to existing steemit page. |
| Velikost souboru | 192 KB |
| Počet instalací | 52 |
| Aktuální Verze | 0.0.1.6 |
| Poslední Aktualizace | 2018-04-04 |
| Datum Vydání | 2018-04-04 |
| Hodnocení | 4.75/5 Celkem 4 Hodnocení |
| Vývojář | BeerCake |
| Typ Platby | free |
| Webové stránky Rozšíření | https://www.steemit.com/@beercake |
| Podporované Jazyky | 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
} | |