Move Reddit Buttons

Moves the share/save/hide/report buttons to the left.

O que é Move Reddit Buttons?

Move Reddit Buttons é uma extensão do Chrome desenvolvida por Ictinus, e sua principal característica é "Moves the share/save/hide/report buttons to the left.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Move Reddit Buttons

Baixe arquivos de extensão Move Reddit Buttons 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

                        Intended for Reddit, this extension moves the share/save/hide/report/comment buttons to the left of the tagline (points/age/submitter) so that the buttons do not change position horizontally from one entry to the next.

Especially convenient for those who like to hide entries in rapid succession.

You may also wish to check out the evolved version of this extension which is a  userscript. See the support link.                    

Informações Básicas da Extensão

Nome Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
URL Oficial https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
Descrição Moves the share/save/hide/report buttons to the left.
Tamanho do Arquivo 53.45 KB
Contagem de Instalações 14
Versão Atual 1.23.1
Última Atualização 2014-07-26
Data de Publicação 2014-07-26
Classificação 4.71/5 Total de 7 Avaliações
Desenvolvedor Ictinus
Tipo de Pagamento free
URL da Página de Ajuda http://userscripts.org/scripts/show/66496
Idiomas Suportados ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Reddit Buttons",
    "description": "Moves the share\/save\/hide\/report buttons to the left.",
    "version": "1.23.1",
    "background": {
        "scripts": []
    },
    "permissions": [
        "http:\/\/*.reddit.com\/",
        "https:\/\/*.reddit.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "moveRedditButtons.user.js"
            ]
        }
    ]
}