Steemit UI/UX enhancement suite

This is a chrome extension to improve user experience and add some new neat features to existing steemit page.

What is Steemit UI/UX enhancement suite?

Steemit UI/UX enhancement suite is a Chrome extension developed by BeerCake, and its main feature is "This is a chrome extension to improve user experience and add some new neat features to existing steemit page.".

Extension Screenshots

screenshot

Download Steemit UI/UX enhancement suite Extension CRX File

Download Steemit UI/UX enhancement suite extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Steemit UI/UX enhancement suite Steemit UI/UX enhancement suite
ID nilebkfchinbmoiackakfpjhfchdpcgc
Official URL https://chromewebstore.google.com/detail/steemit-uiux-enhancement/nilebkfchinbmoiackakfpjhfchdpcgc
Description This is a chrome extension to improve user experience and add some new neat features to existing steemit page.
File Size 192 KB
Installation Count 52
Current Version 0.0.1.6
Last Updated 2018-04-04
Publish Date 2018-04-04
Rating 4.75/5 Total 4 Ratings
Developer BeerCake
Payment Type free
Extension Website https://www.steemit.com/@beercake
Supported Languages 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
}