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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}