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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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 } |