Steemit UI/UX enhancement suite
This is a chrome extension to improve user experience and add some new neat features to existing steemit page.
什么是Steemit UI/UX enhancement suite?
Steemit UI/UX enhancement suite是由BeerCake开发的Chrome扩展程序,该扩展的主要功能是“This is a chrome extension to improve user experience and add some new neat features to existing steemit page.”。
扩展截图
下载Steemit UI/UX enhancement suite扩展crx文件
下载Steemit UI/UX enhancement suite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | nilebkfchinbmoiackakfpjhfchdpcgc |
| 官方URL | https://chromewebstore.google.com/detail/steemit-uiux-enhancement/nilebkfchinbmoiackakfpjhfchdpcgc |
| 简介 | This is a chrome extension to improve user experience and add some new neat features to existing steemit page. |
| 文件大小 | 192 KB |
| 安装次数 | 52 |
| 当前版本 | 0.0.1.6 |
| 更新时间 | 2018-04-04 |
| 上架时间 | 2018-04-04 |
| 评分 | 4.75/5 共4次评分 |
| 开发者 | BeerCake |
| 付费类型 | free |
| 扩展官网 | https://www.steemit.com/@beercake |
| 支持的语言 | 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
} | |