Steem Upvote Bot

Automatic upvoting of new content

O que é Steem Upvote Bot?

Steem Upvote Bot é uma extensão do Chrome desenvolvida por http://www.steemwhales.com, e sua principal característica é "Automatic upvoting of new content".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Steem Upvote Bot

Baixe arquivos de extensão Steem Upvote Bot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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                    

Informações Básicas da Extensão

Nome Steem Upvote Bot Steem Upvote Bot
ID lmcmkgkeniakmnbfojaekpnlfgnlcnog
URL Oficial https://chrome.google.com/webstore/detail/steem-upvote-bot/lmcmkgkeniakmnbfojaekpnlfgnlcnog
Descrição Automatic upvoting of new content
Tamanho do Arquivo 90.12 KB
Contagem de Instalações 255
Versão Atual 0.7
Última Atualização 2017-05-23
Data de Publicação 2017-05-23
Classificação 4.08/5 Total de 12 Avaliações
Desenvolvedor http://www.steemwhales.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://steemit.com/@heimindanger
URL da Página de Ajuda http://steemit.com/@heimindanger
Idiomas Suportados 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"
    }
}