kbwarrior

Browse the web like a true keyboard warrior with simple hinting and a few vim-style browsing shortcuts.

kbwarrior là gì?

kbwarrior là một tiện ích mở rộng Chrome được phát triển bởi https://www.gregjs.com, và tính năng chính của nó là "Browse the web like a true keyboard warrior with simple hinting and a few vim-style browsing shortcuts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng kbwarrior

Tải xuống các tệp mở rộng kbwarrior dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        kbwarrior is a simple Chrome extension for people who like the idea of keyboard (or vim)-based web browsing, but for whom the existing extensions that provide such functionality either do too much or too little for their liking.

I aim to keep this simple, and am still not sure about the final feature set. For now though, this is what `kbwarrior` does:

Page navigation

* `j` to scroll down a line
* `k` to scroll up a line
* `h` to scroll left (if applicable)
* `l` to scroll right (if applicable)
* `u` to scroll up half a page
* `d` to scroll down half a page
* `g` to scroll all the way up
* `G` to scroll all the way down
* `backspace` to go back in history (thanks a lot to Google by the way for generously removing that for us!)
* `Shift+backspace` to go forward in history
* NO SMOOTH SCROLLING IT'S THE DEVIL

Keyboard tab navigation

* `n` to switch to the next tab
* `p` to switch to the previous tab
* `q` to close the current tab

Hinting

* `f` to bring up hints (keyboard shortcuts for all visible links on a page)
* all other `kbwarrior` shortcuts will be disabled for as long as hinting is on
* type a hint to navigate instantly to the hinted link
* hold shift to open in a new tab
* press `f` again to cancel and remove the hints

Inserting

* `i` to bring up insert hints (keyboard shortcuts for all visible text inputs and textareas)
* same as above but just for inserts

## Known issues

I've made sure none of these shortcuts will trigger when you're typing in an input field or anything, but there are some websites that provide their own keyboard shortcuts (GitHub and Twitter for example).

Those site-defined shortcuts will interfere with the ones provided by this extension. I wasn't sure how to deal with this, so I've elected to simply disable the extension on sites that make heavy use of such shortcuts. The current list where `kbwarrior` is disabled is:

* Facebook
* GitHub
* Reddit
* Twitter

I will probably update this list as I go along. Feel free to make a PR or open an issue if there are other sites this really doesn't work on.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên kbwarrior kbwarrior
ID apiogmmklkamhdnjjikooemepogmhjel
URL Chính Thức https://chromewebstore.google.com/detail/kbwarrior/apiogmmklkamhdnjjikooemepogmhjel
Mô tả Browse the web like a true keyboard warrior with simple hinting and a few vim-style browsing shortcuts.
Kích Thước Tệp 61.89 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.4.0
Cập Nhật Lần Cuối 2016-10-10
Ngày Phát Hành 2016-10-10
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.gregjs.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.github.com/greg-js/kbwarrior
URL Trang Trợ Giúp https://github.com/greg-js/kbwarrior/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "kbwarrior",
    "description": "Browse the web like a true keyboard warrior with simple hinting and a few vim-style browsing shortcuts.",
    "version": "0.4.0",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "kbwarrior"
    },
    "icons": {
        "16": "kbw16.png",
        "48": "kbw48.png",
        "128": "kbw128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.github.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "helpers.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ]
}