Alternate Navigation Buttons

This extension places a back and forward and goto top button on the page near the bottom of the window

Что такое Alternate Navigation Buttons?

Alternate Navigation Buttons - это расширение Chrome, разработанное scott.c.l.carpenter, и его основная функция - "This extension places a back and forward and goto top button on the page near the bottom of the window".

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

screenshot

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

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

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

                        This simple extension simply adds 3 fixed navigation buttons (back and forward and to top) to the bottom left corner of the browser window. 

Useful if you find yourself using a tablet PC in a non-tablet mode or like myself browsing with your mouse near the bottom of the screen.                    

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

Название Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
Официальный URL https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
Описание This extension places a back and forward and goto top button on the page near the bottom of the window
Размер файла 90.63 KB
Количество установок 226
Текущая Версия 1.1
Последнее Обновление 2016-09-01
Дата публикации 2016-09-01
Рейтинг 4.80/5 Всего 5 оценок
Разработчик scott.c.l.carpenter
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alternate Navigation Buttons",
    "description": "This extension places a back and forward and goto top button on the page near the bottom of the window",
    "version": "1.1",
    "web_accessible_resources": [
        "back.png",
        "forward.png",
        "top.png"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}