Spreadsheet Shortcuts
This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.
Spreadsheet Shortcutsคืออะไร?
Spreadsheet Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eitam Doodai และคุณลักษณะหลักของมันคือ "This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spreadsheet Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Spreadsheet Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wanted a keyboard shortcut to the "Merge cells" button in google spreadsheets? Now you can! Install the extension, by default Ctrl+M will do the trick, but if you want a different combo, go to the extention's settings after install and choose your own! You can setup up to 5 shortcuts to different buttons in the Options page. This is my first Chrome extension, and also my first html/javascript code ever. I wrote this in a few hours, so it's not bullet proof. If you have any problems, email me and i'll try to help.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Spreadsheet Shortcuts |
ID | niogomcjkbmleicffcajlnfnlgeigafa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spreadsheet-shortcuts/niogomcjkbmleicffcajlnfnlgeigafa |
คำอธิบาย | This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets. |
ขนาดไฟล์ | 96.34 KB |
จำนวนการติดตั้ง | 562 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2013-10-31 |
วันที่เผยแพร่ | 2013-10-31 |
คะแนน | 3.90/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | Eitam Doodai |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spreadsheet Shortcuts", "options_page": "options.html", "description": "This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.", "author": "Eitam Doodai", "version": "1.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/docs.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "js": [ "jquery-2.0.2.js", "shortcut.js", "main.js" ] } ] } |