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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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