Better Slides

Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.

Что такое Better Slides?

Better Slides - это расширение Chrome, разработанное Stornitz, и его основная функция - "Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.".

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

screenshot

Скачать файл CRX расширения Better Slides

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

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

                        Have you ever wanted do just plug-in your Google Slides™ presentation on your second monitor and that it setup automatically with the speakers notes ?

This extension is made for you !

Just click a button and the presentation launches in fullscreen.
If you have two monitors, it moves the presentation to the second one and show you your speakers notes on your primary monitor.

Launch, Plug, and your presentation is ready !

Github : https://github.com/stornitz/better-slides                    

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

Название Better Slides Better Slides
ID deojcdomfmllmflpoecpllilcifdikbo
Официальный URL https://chromewebstore.google.com/detail/better-slides/deojcdomfmllmflpoecpllilcifdikbo
Описание Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.
Размер файла 13.28 KB
Количество установок 66
Текущая Версия 1.0.2
Последнее Обновление 2017-12-28
Дата публикации 2017-12-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Stornitz
Тип оплаты free
Официальный сайт расширения https://github.com/stornitz/better-slides
URL страницы помощи https://github.com/stornitz/better-slides/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Slides",
    "short_name": "Better Slides",
    "description": "Automatically moves your Google Slides\u2122 presentation and speakers notes on multiple monitors.",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "https:\/\/docs.google.com\/presentation\/d\/*",
        "tabs",
        "system.display"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/d\/*\/edit*"
            ],
            "js": [
                "content-edit.js"
            ]
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/d\/*\/present*"
            ],
            "js": [
                "content-present.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "toinject-openSpeakers.js"
    ],
    "manifest_version": 2
}