Solo mode for Google Docs
Hide cursors, selections, comments, and presence avatars of other users
Solo mode for Google Docs là gì?
Solo mode for Google Docs là một tiện ích mở rộng Chrome được phát triển bởi shaofeng, và tính năng chính của nó là "Hide cursors, selections, comments, and presence avatars of other users".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Solo mode for Google Docs
Tải xuống các tệp mở rộng Solo mode for Google Docs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Solo mode for Google Docs |
ID | jialeippmpkpbljcfhglaakoknfiojof |
URL Chính Thức | https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof |
Mô tả | Hide cursors, selections, comments, and presence avatars of other users |
Kích Thước Tệp | 25.31 KB |
Số Lần Cài Đặt | 546 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-05-28 |
Ngày Phát Hành | 2020-05-28 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | shaofeng |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |