KeyboardShortcuts
Add Keyboard Shortcuts to Web Applications
Wat is KeyboardShortcuts?
KeyboardShortcuts is een Chrome-extensie ontwikkeld door farleigh, en de belangrijkste functie is "Add Keyboard Shortcuts to Web Applications".
Extensie Screenshots
Download het CRX-bestand van de extensie KeyboardShortcuts
Download KeyboardShortcuts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content.
Basisinformatie over de Extensie
Naam | |
ID | oiigclempgcopbccpbibeembdmbenpce |
Officiële URL | https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce |
Beschrijving | Add Keyboard Shortcuts to Web Applications |
Bestandsgrootte | 498 KB |
Aantal Installaties | 76 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2016-04-24 |
Publicatiedatum | 2016-04-24 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | farleigh |
Betalingswijze | free |
Extensiewebsite | https://github.com/farleigh/keyboardshortcuts/wiki |
Help Pagina-URL | https://github.com/farleigh/keyboardshortcuts/wiki |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "KeyboardShortcuts", "version": "1.0.0", "description": "Add Keyboard Shortcuts to Web Applications", "homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/3p\/almond-min.js", "js\/3p\/jquery.js", "js\/3p\/mousetrap.js", "js\/keyboard-shortcuts-bundle.js" ] } ], "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "tabs", "activeTab", "storage", "clipboardWrite", "downloads" ], "browser_action": { "default_icon": "images\/favicon.png", "default_popup": "popup.html" }, "icons": { "32": "images\/favicon.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |