Surfingkeys

Rich shortcuts to click links/switch tabs/scroll, capture pages, use your browser like vim for productivity.

Surfingkeys là gì?

Surfingkeys là một tiện ích mở rộng Chrome được phát triển bởi https://brookhong.github.io, và tính năng chính của nó là "Rich shortcuts to click links/switch tabs/scroll, capture pages, use your browser like vim for productivity.".

Ả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 Surfingkeys

Tải xuống các tệp mở rộng Surfingkeys 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

                        A Chrome extension for Vim users, but EMACS users would also love it, as it is much extendable with javascript.

# to click links

    f   Open a link, press SHIFT to flip hints if they are overlapped.
    C   Open a link in non-active new tab
    cf  Open multiple links in a new tab
    gf  Open a link in non-active new tab
    af  Open a link in new tab

# to switch tabs

    E    Go one tab left
    R    Go one tab right
    x    Close current tab
    X    Restore closed tab
    W    New window with current tab
    J    Move current tab to left
    K    Move current tab to right
    yt   Duplicate current tab
    <<   Move current tab to left
    >>   Move current tab to right
    g0   Go to the first tab
    g$   Go to the last tab
    gx0  Close all tabs on left
    gxt  Close tab on left
    gxT  Close tab on right
    gx$  Close all tabs on right

# to scroll pages / DIVs

    0    Scroll all the way to the left
    e    Scroll a page up
    d    Scroll a page down
    gg   Scroll to the top of the page
    G    Scroll to the bottom of the page
    j    Scroll down
    k    Scroll up
    h    Scroll left
    l    Scroll right
    $    Scroll all the way to the right
    %    Scroll to percentage of current page
    cS   Reset scroll target
    cs   Change scroll target

# to capture full pages / DIV

    yG   Capture current full page
    yS   Capture scrolling element

# to search seleted with kinds of search engines

    sg   Search selected with google
    sw   Search selected with bing
    sy   Search selected with youtube
    sb   Search selected with baidu

# to edit input with vim editor

    Ctrl-i   Go to edit box with vim editor

# to edit URL with vim editor

    su   Edit current URL with vim editor                    

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

Tên Surfingkeys Surfingkeys
ID gfbliohnnapiefjpjlpjnehglfpaknnc
URL Chính Thức https://chromewebstore.google.com/detail/surfingkeys/gfbliohnnapiefjpjlpjnehglfpaknnc
Mô tả Rich shortcuts to click links/switch tabs/scroll, capture pages, use your browser like vim for productivity.
Kích Thước Tệp 1.19 MB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.16.1
Cập Nhật Lần Cuối 2024-01-13
Ngày Phát Hành 2020-06-02
Đánh Giá 4.64/5 Tổng số 269 Đánh Giá
Nhà Phát Triển https://brookhong.github.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/brookhong/Surfingkeys
URL Trang Trợ Giúp https://github.com/brookhong/Surfingkeys/issues
URL Trang Chính Sách Bảo Mật https://brookhong.github.io/2020/04/05/privacy-policy-of-surfingkeys.html
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Surfingkeys",
    "short_name": "Rich shortcuts in vim spirit for productivity with keyboard.",
    "description": "Rich shortcuts to click links\/switch tabs\/scroll, capture pages, use your browser like vim for productivity.",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "commands": {
        "restartext": {
            "description": "Restart this extenstion."
        },
        "previousTab": {
            "description": "Go to the previous tab."
        },
        "nextTab": {
            "description": "Go to the next tab."
        },
        "closeTab": {
            "description": "Close the current tab."
        },
        "proxyThis": {
            "description": "Toggle current site in autoproxy_hosts."
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png"
        },
        "default_title": "Surfingkeys",
        "default_popup": "pages\/popup.html"
    },
    "author": "brook hong",
    "permissions": [
        "nativeMessaging",
        "",
        "tabs",
        "history",
        "bookmarks",
        "storage",
        "sessions",
        "downloads",
        "topSites",
        "clipboardRead",
        "clipboardWrite",
        "proxy",
        "tts",
        "downloads.shelf"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "pages\/neovim.html",
        "pages\/default.js",
        "pages\/emoji.tsv",
        "pages\/l10n.json",
        "pages\/frontend.html",
        "pages\/pdf_viewer.html",
        "pages\/shadow.css",
        "pages\/default.css"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "version": "1.16.1",
    "incognito": "split",
    "options_page": "pages\/options.html"
}