SheetKeys

Adds powerful keyboard shortcuts to Google Sheets, in the spirit of the Vim text editor.

SheetKeysคืออะไร?

SheetKeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย philcrosby และคุณลักษณะหลักของมันคือ "Adds powerful keyboard shortcuts to Google Sheets, in the spirit of the Vim text editor."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SheetKeys

ดาวน์โหลดไฟล์ส่วนขยาย SheetKeys ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you are a project manager, programmer, finance person, or just someone who uses spreadsheets a lot, this can greatly increase your efficiency in Google Sheets.

After installing, you can see and customize all of the keyboard mappings by typing "?" while on a Google Sheets page.

Here is a partial list of shortcuts, and their default key assignments:

Movement:

  j      Move cursor down
  k      Move cursor up
  h      Move cursor left
  l      Move cursor right

      Move rows down
      Move rows up
      Move columns left
      Move columns right

      Scroll half page down
      Scroll half page up
  g,g    Scroll to the top of the sheet
  G      Scroll to the bottom of the sheet

Selection:

  v      Begin selecting cells
  V      Begin selecting rows
  A-v    Begin selecting columns

Editing:

  i      Edit cell
  a      Append to cell (edit but, starting at the end)
  u      Undo
      Redo

  o      Insert a row below the cursor and edit it
  O      Insert a row above the cursor and edit it
  s      Insert a row below the cursor
  S      Insert a row above the cursor

  d,d    Delete the current row (or selected rows/columns)
  x      Delete cell contents
  y,y    Copy the current row (or selected rows/columns)
  y,c    Copy cells
  p      Paste

Formatting:

  ;,a,l  Align left
  ;,a,c  Align center
  ;,a,r  Align right
  ;,w,w  Wrap cell
  ;,w,w  Overflow the cell
  ;,w,c  Clip the cell

Other:
  ?      Show the help dialog
  ;,w,f  Toggle full screen
  ;o     Open URL in cell in a new tab                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SheetKeys SheetKeys
ID dnckajfoijllhbnfdhdklcfpckcbonhi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sheetkeys/dnckajfoijllhbnfdhdklcfpckcbonhi
คำอธิบาย Adds powerful keyboard shortcuts to Google Sheets, in the spirit of the Vim text editor.
ขนาดไฟล์ 45 KB
จำนวนการติดตั้ง 349
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2023-12-26
วันที่เผยแพร่ 2023-02-16
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา philcrosby
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/philc/sheetkeys
URL หน้าช่วยเหลือ https://github.com/philc/sheetkeys
URL หน้านโยบายความเป็นส่วนตัว https://github.com/philc/vimium/wiki/Privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SheetKeys",
    "version": "0.4",
    "description": "Adds powerful keyboard shortcuts to Google Sheets, in the spirit of the Vim text editor.",
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background_script.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*",
                "https:\/\/docs.google.com\/a*\/spreadsheets\/*"
            ],
            "js": [
                "content_scripts\/keyboard_utils.js",
                "content_scripts\/settings.js",
                "content_scripts\/sheet_actions.js",
                "content_scripts\/ui.js",
                "content_scripts\/commands.js",
                "help_dialog.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page_scripts\/page_script.js",
                "fontello_svg_icon_font.css",
                "help_dialog.css",
                "help_dialog.html"
            ],
            "matches": [
                "https:\/\/docs.google.com\/*"
            ]
        }
    ]
}