Hubnav

Navigate GitHub.com via keyboard shortcuts.

Hubnav là gì?

Hubnav là một tiện ích mở rộng Chrome được phát triển bởi Sarah Vessels, và tính năng chính của nó là "Navigate GitHub.com via keyboard shortcuts.".

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

screenshot

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

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

                        Use keyboard shortcuts to quickly access issues, pull requests, the file finder, and other views of interest for your most frequented GitHub repositories, users, organizations, milestones, and projects. The extension doesn't require any special permissions, you don't have to authorize anything with GitHub.

Change log:

0.1.0

- You can now add shortcuts for user projects.

0.0.9

- Add 'pro[j]ects' shortcut for organizations and repositories.

0.0.8

- You can now add shortcuts for GitHub teams.
- Repositories shortcut for a user now opens the "Repositories" tab on a user profile, instead of taking you to the search results page.
- Fix bug so that you can remove milestone shortcuts.

0.0.7

- You can now add GitHub milestones and switch quickly between them.
- Allow drag-and-drop reordering of shortcuts on the options page.
- Context switcher now includes an icon so you can tell whether it activates a project, repository, organization, user, or milestone context.
- Activating shortcuts that do not apply to the active context no longer opens URLs for previously active contexts.
- Small UI improvements to options page.
- More compact popup so it shouldn't scroll vertically.

0.0.6

- Added ability to have a varying number of shortcuts per type, e.g., you can have 10 repository shortcuts instead of just 4.
- Added documentation on options page about how to change the keyboard shortcut to open the extension.
- Fixed bug where help text would show in the popup even if a project shortcut had been added.
- Fixed bug where renaming the active project would deselect it and require you to reselect it in the popup.
- Fixed bug where file finder could be opened for the last selected repository, even when you had a user, organization, or project selected.

0.0.5

- Added ability to limit viewing a user's issues or pull requests to those within a specified repository or organization.
- Improved UI for adding user or organization shortcuts.

0.0.4

- Fixed bug where the shortcut for viewing merged pull requests for a user would not filter correctly.
- Added ability to set a custom GitHub URL for repository shortcuts. This can be used for GitHub Enterprise installations on custom domains.
- Added shortcut to view closed pull requests in a repository.

0.0.3

- Added ability to save and switch between multiple users and organizations instead of a single organization.
- Added ability to save and switch between multiple projects.

0.0.2

- Reduced permissions the extension requires.
- Added a welcome tip when no settings have been saved for the extension yet.                    

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

Tên Hubnav Hubnav
ID aanefongalfonofnpgkgcibhogmgnckm
URL Chính Thức https://chromewebstore.google.com/detail/hubnav/aanefongalfonofnpgkgcibhogmgnckm
Mô tả Navigate GitHub.com via keyboard shortcuts.
Kích Thước Tệp 78.23 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-04-06
Ngày Phát Hành 2019-04-06
Nhà Phát Triển Sarah Vessels
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cheshire137/hubnav
URL Trang Trợ Giúp https://github.com/cheshire137/hubnav/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hubnav",
    "short_name": "Hubnav",
    "description": "Navigate GitHub.com via keyboard shortcuts.",
    "version": "0.1.0",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html",
        "default_title": "Hubnav"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "bad-user.png",
        "icon128.png",
        "unknown-user.png"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": "Alt+H"
        }
    }
}