Back to the Top

Scroll to the top of the page

Что такое Back to the Top?

Back to the Top - это расширение Chrome, разработанное marinadecroon, и его основная функция - "Scroll to the top of the page".

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

screenshot

Скачать файл CRX расширения Back to the Top

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

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

                        A browser extension (add-on) for Google Chrome that allows you to quickly get back to the top and/or bottom of a page.                    

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

Название Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
Официальный URL https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
Описание Scroll to the top of the page
Размер файла 14.1 KB
Количество установок 160
Текущая Версия 1.0
Последнее Обновление 2022-04-18
Дата публикации 2022-04-18
Рейтинг 1.00/5 Всего 1 оценок
Разработчик marinadecroon
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://sites.google.com/view/toptoscroll/home
Поддерживаемые языки en
manifest.json
{
    "background": {
        "service_worker": "sw.js"
    },
    "description": "Scroll to the top of the page",
    "name": "Back to the Top",
    "short_name": "up",
    "version": "1.0",
    "manifest_version": 3,
    "homepage_url": "https:\/\/avroraext.com",
    "action": {
        "default_icon": "icons\/icon_128.png"
    },
    "icons": {
        "128": "icons\/icon_128.png",
        "64": "icons\/icon_64.png",
        "32": "icons\/icon_32.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_32.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}