Scroll Progress Bar

Simple and unobtrusive horizontal progress bar to show how far down a webpage you have scrolled.

Что такое Scroll Progress Bar?

Scroll Progress Bar - это расширение Chrome, разработанное Unknown, и его основная функция - "Simple and unobtrusive horizontal progress bar to show how far down a webpage you have scrolled.".

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

screenshot

Скачать файл CRX расширения Scroll Progress Bar

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

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

                        When reading a long webpage, it is nice to have a visual aid to see how much progress you've made. This extension adds an unobtrusive horizontal progress bar to the top of your screen that indicated how far down the page you have scrolled.                    

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

Название Scroll Progress Bar Scroll Progress Bar
ID dfejgdncgcidoeabmpdfbibmmkfbbbaf
Официальный URL https://chromewebstore.google.com/detail/scroll-progress-bar/dfejgdncgcidoeabmpdfbibmmkfbbbaf
Описание Simple and unobtrusive horizontal progress bar to show how far down a webpage you have scrolled.
Размер файла 1019 KB
Количество установок 193
Текущая Версия 0.0.2
Последнее Обновление 2017-10-21
Дата публикации 2017-10-21
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Unknown
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/philiprlarie/scroll-progress-bar-chrome-extension
URL страницы помощи https://github.com/philiprlarie/scroll-progress-bar-chrome-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Progress Bar",
    "description": "Simple and unobtrusive horizontal progress bar to show how far down a webpage you have scrolled.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "version": "0.0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}