Move Reddit Buttons

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

Co to jest Move Reddit Buttons?

Move Reddit Buttons to rozszerzenie Chrome opracowane przez Ictinus, a jego główną funkcją jest „Moves the share/save/hide/report buttons to the left.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Move Reddit Buttons

Pobierz pliki rozszerzeń Move Reddit Buttons w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
Oficjalny URL https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
Opis Moves the share/save/hide/report buttons to the left.
Rozmiar pliku 53.45 KB
Liczba instalacji 14
Aktualna Wersja 1.23.1
Ostatnia Aktualizacja 2014-07-26
Data Publikacji 2014-07-26
Ocena 4.71/5 Łącznie 7 Oceny
Deweloper Ictinus
Typ Płatności free
Adres URL Strony Pomocy http://userscripts.org/scripts/show/66496
Obsługiwane Języki 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"
            ]
        }
    ]
}