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" ] } ] } |