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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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
}