Move Reddit Buttons

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

Cos'è Move Reddit Buttons?

Move Reddit Buttons è un'estensione di Chrome sviluppata da Ictinus, e la sua funzione principale è "Moves the share/save/hide/report buttons to the left.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Move Reddit Buttons

Scarica i file di estensione Move Reddit Buttons in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
URL Ufficiale https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
Descrizione Moves the share/save/hide/report buttons to the left.
Dimensione del File 53.45 KB
Conteggio Installazioni 14
Versione Corrente 1.23.1
Ultimo Aggiornamento 2014-07-26
Data di Pubblicazione 2014-07-26
Valutazione 4.71/5 Totale 7 Valutazioni
Sviluppatore Ictinus
Tipo di Pagamento free
URL della Pagina di Aiuto http://userscripts.org/scripts/show/66496
Lingue Supportate 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"
            ]
        }
    ]
}