Solo mode for Google Docs

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

Wat is Solo mode for Google Docs?

Solo mode for Google Docs is een Chrome-extensie ontwikkeld door shaofeng, en de belangrijkste functie is "Hide cursors, selections, comments, and presence avatars of other users".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Solo mode for Google Docs

Download Solo mode for Google Docs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Solo mode for Google Docs Solo mode for Google Docs
ID jialeippmpkpbljcfhglaakoknfiojof
Officiële URL https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof
Beschrijving Hide cursors, selections, comments, and presence avatars of other users
Bestandsgrootte 25.31 KB
Aantal Installaties 546
Huidige Versie 1.0
Laatst Bijgewerkt 2020-05-28
Publicatiedatum 2020-05-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar shaofeng
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}