Move Reddit Buttons

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

Что такое Move Reddit Buttons?

Move Reddit Buttons - это расширение Chrome, разработанное Ictinus, и его основная функция - "Moves the share/save/hide/report buttons to the left.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Move Reddit Buttons

Скачайте файлы расширений Move Reddit Buttons в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
Официальный URL https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
Описание Moves the share/save/hide/report buttons to the left.
Размер файла 53.45 KB
Количество установок 14
Текущая Версия 1.23.1
Последнее Обновление 2014-07-26
Дата публикации 2014-07-26
Рейтинг 4.71/5 Всего 7 оценок
Разработчик Ictinus
Тип оплаты free
URL страницы помощи http://userscripts.org/scripts/show/66496
Поддерживаемые языки 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"
            ]
        }
    ]
}