Spreadsheet Shortcuts
This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets.
Spreadsheet Shortcuts क्या है?
Spreadsheet Shortcuts Eitam Doodai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is used to map keyboard shortcuts to toolbar buttons in google spreadsheets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spreadsheet Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |