Invisible Google Slide Control Bar

Control your Google Slide control bar.

Что такое Invisible Google Slide Control Bar?

Invisible Google Slide Control Bar - это расширение Chrome, разработанное thumbd12856, и его основная функция - "Control your Google Slide control bar.".

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

screenshot

Скачать файл CRX расширения Invisible Google Slide Control Bar

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

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

                        Have you ever thought it is annoying that when presenting the Google Slide, the control bar shows while the cursor nearing it?

Now, you can control when to display/hide the Google Slide control bar by pressing a button!

Also, you can go for a toy example on the simple test page:
https://docs.google.com/presentation/d/1fUmsYkhQBpPGDVM1ErU8aL7bc0LmANjq8JA4WE0AjIs

The source code is open at https://github.com/thumbe12856/chrome-extension/tree/master/Invisible%20Google%20Slide%20Control%20Bar                    

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

Название Invisible Google Slide Control Bar Invisible Google Slide Control Bar
ID hgaahalodagndnfjpggmojcbdololagh
Официальный URL https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh
Описание Control your Google Slide control bar.
Размер файла 193 KB
Количество установок 2,551
Текущая Версия 1.1
Последнее Обновление 2019-09-29
Дата публикации 2019-09-28
Рейтинг 4.82/5 Всего 22 оценок
Разработчик thumbd12856
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Invisible Google Slide Control Bar",
    "description": "Control your Google Slide control bar.",
    "version": "1.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "assets\/lodash.min.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*"
    ]
}