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 |
官方網址 | 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 } |