Spreadsheet Shortcuts

This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.

Spreadsheet Shortcuts là gì?

Spreadsheet Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi Eitam Doodai, và tính năng chính của nó là "This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spreadsheet Shortcuts

Tải xuống các tệp mở rộng Spreadsheet Shortcuts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spreadsheet Shortcuts Spreadsheet Shortcuts
ID niogomcjkbmleicffcajlnfnlgeigafa
URL Chính Thức https://chromewebstore.google.com/detail/spreadsheet-shortcuts/niogomcjkbmleicffcajlnfnlgeigafa
Mô tả This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.
Kích Thước Tệp 96.34 KB
Số Lần Cài Đặt 562
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2013-10-31
Ngày Phát Hành 2013-10-31
Đánh Giá 3.90/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Eitam Doodai
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}