KeyboardShortcuts
Add Keyboard Shortcuts to Web Applications
什麼是KeyboardShortcuts?
KeyboardShortcuts是由farleigh開發的Chrome擴展程式,該擴展的主要功能是“Add Keyboard Shortcuts to Web Applications”。
擴展截圖
下載KeyboardShortcuts擴展crx文件
下載KeyboardShortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | oiigclempgcopbccpbibeembdmbenpce |
官方網址 | https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce |
簡介 | Add Keyboard Shortcuts to Web Applications |
檔案大小 | 498 KB |
安裝次數 | 76 |
目前版本 | 1.0.0 |
更新時間 | 2016-04-24 |
上架時間 | 2016-04-24 |
評分 | 5.00/5 共 1 次評分 |
開發者 | farleigh |
付費類型 | free |
擴展官網 | https://github.com/farleigh/keyboardshortcuts/wiki |
說明頁面URL | https://github.com/farleigh/keyboardshortcuts/wiki |
支援的語言 | 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 } |