Solo mode for Google Docs

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

What is Solo mode for Google Docs?

Solo mode for Google Docs is a Chrome extension developed by shaofeng, and its main feature is "Hide cursors, selections, comments, and presence avatars of other users".

Extension Screenshots

screenshot
screenshot

Download Solo mode for Google Docs Extension CRX File

Download Solo mode for Google Docs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Solo mode for Google Docs Solo mode for Google Docs
ID jialeippmpkpbljcfhglaakoknfiojof
Official URL https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof
Description Hide cursors, selections, comments, and presence avatars of other users
File Size 25.31 KB
Installation Count 546
Current Version 1.0
Last Updated 2020-05-28
Publish Date 2020-05-28
Rating 5.00/5 Total 1 Ratings
Developer shaofeng
Email [email protected]
Payment Type free
Supported Languages 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
}