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.”。

擴展截圖

screenshot

下載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 Spreadsheet Shortcuts
ID niogomcjkbmleicffcajlnfnlgeigafa
官方網址 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"
            ]
        }
    ]
}