Solo mode for Google Docs

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

Cos'è Solo mode for Google Docs?

Solo mode for Google Docs è un'estensione di Chrome sviluppata da shaofeng, e la sua funzione principale è "Hide cursors, selections, comments, and presence avatars of other users".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Solo mode for Google Docs

Scarica i file di estensione Solo mode for Google Docs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Solo mode for Google Docs Solo mode for Google Docs
ID jialeippmpkpbljcfhglaakoknfiojof
URL Ufficiale https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof
Descrizione Hide cursors, selections, comments, and presence avatars of other users
Dimensione del File 25.31 KB
Conteggio Installazioni 546
Versione Corrente 1.0
Ultimo Aggiornamento 2020-05-28
Data di Pubblicazione 2020-05-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore shaofeng
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}