Move Reddit Buttons

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

Co je Move Reddit Buttons?

Move Reddit Buttons je rozšíření Chrome vyvinuté Ictinus, a jeho hlavní funkcí je „Moves the share/save/hide/report buttons to the left.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Move Reddit Buttons

Stáhněte si soubory rozšíření Move Reddit Buttons ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
Oficiální URL https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
Popis Moves the share/save/hide/report buttons to the left.
Velikost souboru 53.45 KB
Počet instalací 14
Aktuální Verze 1.23.1
Poslední Aktualizace 2014-07-26
Datum Vydání 2014-07-26
Hodnocení 4.71/5 Celkem 7 Hodnocení
Vývojář Ictinus
Typ Platby free
URL Stránky Nápovědy http://userscripts.org/scripts/show/66496
Podporované Jazyky 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"
            ]
        }
    ]
}