Solo mode for Google Docs

Hide cursors, selections, comments, and presence avatars of other users

Что такое Solo mode for Google Docs?

Solo mode for Google Docs - это расширение Chrome, разработанное shaofeng, и его основная функция - "Hide cursors, selections, comments, and presence avatars of other users".

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

screenshot
screenshot

Скачать файл CRX расширения Solo mode for Google Docs

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

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

                        This extension allows you to hide the comments, cursors, and selections of other users in a Google Doc, which helps you to focus on the main content, rather than distracted by other users' comments and moving cursors.                    

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

Название Solo mode for Google Docs Solo mode for Google Docs
ID jialeippmpkpbljcfhglaakoknfiojof
Официальный URL https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof
Описание Hide cursors, selections, comments, and presence avatars of other users
Размер файла 25.31 KB
Количество установок 546
Текущая Версия 1.0
Последнее Обновление 2020-05-28
Дата публикации 2020-05-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик shaofeng
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Solo mode for Google Docs",
    "version": "1.0",
    "description": "Hide cursors, selections, comments, and presence avatars of other users",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Solo mode",
        "default_icon": {
            "16": "logo_16.png",
            "32": "logo_32.png",
            "48": "logo_48.png",
            "128": "logo_128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "clean.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "logo_16.png",
        "32": "logo_32.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "manifest_version": 2
}