Spreadsheet Shortcuts

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

Qu'est-ce que Spreadsheet Shortcuts ?

Spreadsheet Shortcuts est une extension Chrome développée par Eitam Doodai, et sa fonction principale est "This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Spreadsheet Shortcuts

Téléchargez les fichiers d'extension Spreadsheet Shortcuts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Spreadsheet Shortcuts Spreadsheet Shortcuts
ID niogomcjkbmleicffcajlnfnlgeigafa
URL Officiel https://chromewebstore.google.com/detail/spreadsheet-shortcuts/niogomcjkbmleicffcajlnfnlgeigafa
Description This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.
Taille du Fichier 96.34 KB
Nombre d'Installations 562
Version Actuelle 1.3
Dernière Mise à Jour 2013-10-31
Date de Publication 2013-10-31
Évaluation 3.90/5 Total 10 Évaluations
Développeur Eitam Doodai
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}