Spreadsheet Shortcuts
This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.
什么是Spreadsheet Shortcuts?
Spreadsheet Shortcuts是由Eitam Doodai开发的Chrome扩展程序,该扩展的主要功能是“This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.”。
扩展截图
下载Spreadsheet Shortcuts扩展crx文件
下载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" ] } ] } |