Solo mode for Google Docs
Hide cursors, selections, comments, and presence avatars of other users
Qu'est-ce que Solo mode for Google Docs ?
Solo mode for Google Docs est une extension Chrome développée par shaofeng, et sa fonction principale est "Hide cursors, selections, comments, and presence avatars of other users".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Solo mode for Google Docs
Téléchargez les fichiers d'extension Solo mode for Google Docs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Solo mode for Google Docs |
ID | jialeippmpkpbljcfhglaakoknfiojof |
URL Officiel | https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof |
Description | Hide cursors, selections, comments, and presence avatars of other users |
Taille du Fichier | 25.31 KB |
Nombre d'Installations | 546 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-05-28 |
Date de Publication | 2020-05-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | shaofeng |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |