Smooth Scroll
Scroll your webpage without moving your palm off the center of keyboard
什麼是Smooth Scroll?
Smooth Scroll是由Daniel Han開發的Chrome擴展程式,該擴展的主要功能是“Scroll your webpage without moving your palm off the center of keyboard”。
擴展截圖
下載Smooth Scroll擴展crx文件
下載Smooth Scroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension allows you to scroll your webpage without moving your palm. By default the Chrome browser only allows you to scroll the page by the arrow key, or page up/down key. Those keys are usually located at the edge of the keyboard. As a result you will have to move your hand around when you scroll. This extension allows scrolling with the H, J, K, L keys, just as in vim, or with the A, W, S, D keys just like you do in a desktop game.
擴展基本資訊
名稱 | Smooth Scroll |
ID | gkhebpnlfbdhbhnlgdpcpidkcgmmhdhp |
官方網址 | https://chromewebstore.google.com/detail/smooth-scroll/gkhebpnlfbdhbhnlgdpcpidkcgmmhdhp |
簡介 | Scroll your webpage without moving your palm off the center of keyboard |
檔案大小 | 200 KB |
安裝次數 | 604 |
目前版本 | 1.3 |
更新時間 | 2017-07-14 |
上架時間 | 2017-07-14 |
評分 | 4.00/5 共 7 次評分 |
開發者 | Daniel Han |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/hex0cter/smooth-scroll |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smooth Scroll", "author": "Daniel Han", "short_name": "Smooth Scrolling", "description": "Scroll your webpage without moving your palm off the center of keyboard", "version": "1.3", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png" }, "default_title": "Smooth Scroll", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/", "file:\/\/\/*\/" ] } |