Steem Upvote Bot

Automatic upvoting of new content

Steem Upvote Bot là gì?

Steem Upvote Bot là một tiện ích mở rộng Chrome được phát triển bởi http://www.steemwhales.com, và tính năng chính của nó là "Automatic upvoting of new content".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Steem Upvote Bot

Tải xuống các tệp mở rộng Steem Upvote Bot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # steembot
Simple chrome extension that upvotes contents when you go to steemit.com for you. It helps get as many curation rewards as possible on your favorite social network.

## Getting started

1. Install the extension either from Google Store or from this repository
2. Right click the extension and click on 'Options' to configure your bot settings
3. Click the extension icon to activate (icon will turn orange)
4. Open a steemit.com tab (most likely the 'new' one)

The bot will automatically start scrolling and fetching more content, then analyze everything and eventually upvote. Then it will refresh and do it again, and again, and again, and again.

Download on chrome store: https://chrome.google.com/webstore/detail/steem-upvote-bot/lmcmkgkeniakmnbfojaekpnlfgnlcnog?hl=en-US                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Steem Upvote Bot Steem Upvote Bot
ID lmcmkgkeniakmnbfojaekpnlfgnlcnog
URL Chính Thức https://chrome.google.com/webstore/detail/steem-upvote-bot/lmcmkgkeniakmnbfojaekpnlfgnlcnog
Mô tả Automatic upvoting of new content
Kích Thước Tệp 90.12 KB
Số Lần Cài Đặt 255
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2017-05-23
Ngày Phát Hành 2017-05-23
Đánh Giá 4.08/5 Tổng số 12 Đánh Giá
Nhà Phát Triển http://www.steemwhales.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://steemit.com/@heimindanger
URL Trang Trợ Giúp http://steemit.com/@heimindanger
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Steem Upvote Bot",
    "short_name": "SteemBot",
    "description": "Automatic upvoting of new content",
    "version": "0.7",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "steem128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/steemit.com\/*",
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "48": "steem48.png",
        "128": "steem128.png"
    }
}