SteemitVWVoter

A Steemit voter allowing all users to vote with customized voting weight (VW)

什么是SteemitVWVoter?

SteemitVWVoter是由marcoxzh3开发的Chrome扩展程序,该扩展的主要功能是“A Steemit voter allowing all users to vote with customized voting weight (VW)”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载SteemitVWVoter扩展crx文件

下载SteemitVWVoter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Steemit VW Voter allows Steemit users to set the voting weight (between 1% and 100%, both inclusive), and use this weight to up-vote the blog shown in the current web page:
+ allow user to designate (Steemit) username and (posting) key;
+ allow user to define default voting weight;
+ automatically detect the current blog is available for up-voting or not;
+ use customized weight to vote the current blog;

Change logs:
0.1.0: new function: show the full list of active voters of the blog.
0.1.2: major bug fix: use blog author, title and time to locate a blog instead of just web page URL.
0.1.5: major bug fix: revert finding author from page, back to find use URL. This is because the same page maybe rendered differently by different Chrome profile, thus may have different DOMs. This effects 0.1.2 and causes critical bug.
0.1.6: minor bug fix: correct the message shown in non-blog Steemit pages.
0.1.8: icon updated                    

扩展基本信息

名称 SteemitVWVoter SteemitVWVoter
ID dnjkmdgemelkdpjinpbngbnfmikddnjj
官方URL https://chromewebstore.google.com/detail/steemitvwvoter/dnjkmdgemelkdpjinpbngbnfmikddnjj
简介 A Steemit voter allowing all users to vote with customized voting weight (VW)
文件大小 171 KB
安装次数 10
当前版本 0.1.8
更新时间 2018-01-31
上架时间 2018-01-30
开发者 marcoxzh3
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/MarcoXZh/StmVWVoter
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SteemitVWVoter",
    "author": "MarcoXZh3",
    "version": "0.1.8",
    "description": "A Steemit voter allowing all users to vote with customized voting weight (VW)",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html",
        "default_title": "Customize Steemit voting weight"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}