Solo mode for Google Docs
Hide cursors, selections, comments, and presence avatars of other users
Hvad er Solo mode for Google Docs?
Solo mode for Google Docs er en Chrome-udvidelse udviklet af shaofeng, og dens hovedfunktion er "Hide cursors, selections, comments, and presence avatars of other users".
Udvidelsesskærmbilleder
Download Solo mode for Google Docs-udvidelses-CRX-fil
Download Solo mode for Google Docs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jialeippmpkpbljcfhglaakoknfiojof |
| Officiel URL | https://chromewebstore.google.com/detail/solo-mode-for-google-docs/jialeippmpkpbljcfhglaakoknfiojof |
| Beskrivelse | Hide cursors, selections, comments, and presence avatars of other users |
| Filstørrelse | 25.31 KB |
| Antal Installationer | 546 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2020-05-28 |
| Udgivelsesdato | 2020-05-28 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | shaofeng |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |