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是由shaofeng开发的Chrome扩展程序,该扩展的主要功能是“Hide cursors, selections, comments, and presence avatars of other users”。
扩展截图
下载Solo mode for Google Docs扩展crx文件
下载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 } |