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」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 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
Eメール [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
}