Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chromenu

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chromenu

Mobile Chromium in your menu bar

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Chromenu

Chromium mini browser for your menubar. This app intends to be used for your daily tasks with browser. You can access to a mini browser quickly via clicking menu item or hot key everywhere.

This app consists of three parts; header, main view and footer.

main screenshot

  • Header: you can register some pages and switch them by clicking icons.
  • Main view: web pages will be rendered here.
  • Footer: you can control browser; go forward/back, home, reload and so on.

Installation

Download a package for your environment from release page. After unarchive the zip, you can start app by clicking or executing a binary in the directory.

Or install via npm.

$ npm install -g chromenu
$ chromenu

Usage

Getting Started

Just after starting app, you can see below window.

just after starting

For now, what you can do is register new page from '+' button at header. It opens a configuration view and you can input the information of the page which you want to register.

  • URL of the page (required)
  • Icon image (optional)
  • Page title (optional)
configuration page

After clicking 'OK', new icon will be added to header and the page will be opened in main view.

after registration

Now you can explore the page freely. Footer has some buttons to control browseing (go forward/back, go home (registered URL), reload).

You can show/hide this app by clicking the Chrome icon in menubar or entering hot key (Cmd+Shift+S in macOS or Ctrl+Shift+S in other platforms by default). In app, some keyboard shortcuts are available (please see below section).

When you want to add another page, click '+' again.

Keyboard Shortcuts

Some keyboard shortcuts are available in the app by default. The mod means Cmd key in macOS, or Ctrl key in other platforms.

Default ShortcutDescriptionAction Name
mod+{number}Open {number}th page.page1~page9
mod+rReload page.reload
mod+fToggle search window.toggle-search
mod+shift+hShow home (registered URL).home
mod+backspaceGo back.back
N/AGo forward.forward
mod+oOpen the page in external browser.open-external-browser
ctrl+tabOpen next page.next-page
ctrl+shift+tabOpen previous page.previous-page
mod+hScroll left.scroll-left
mod+lScroll right.scroll-right
mod+jScroll down.scroll-down
mod+kScroll up.scroll-up
mod+shift+jScroll to the bottom of page.scroll-bottom
mod+shift+kScroll to the top of page.scroll-top
N/AScroll down half page.scroll-down-half-page
N/AScroll up half page.scroll-up-half-page
N/AScroll down a page.scroll-down-page
N/AScroll up a page.scroll-up-page
N/AOpen DevTools (for debugging).open-devtools
N/AReset application (for debug).reset-app

Search in the Page

You can search some words in the page like Cmd+F (or Ctrl+F) in Chrome.

search animated gif

Configuration

Configuration file config.json is created in application directory when app is launched at first.

The path to configuration directory is depending on the OS.

  • ~/Library/Application\ Support/Chromenu for macOS
  • ~/.config/Chromenu for Linux
  • %APPDATA%\Chromenu for Windows.

You can customize application behavior with the JSON file.

hot_key

Hot key to access to this app quickly. Note that key sequence format is different from below keymaps configuration. This value should be specified with accelerator format (e.g. F8). Default value is CmdOrCtrl+Shift+S. Empty string or null disables hot key.

icon_color

Icon color in menubar (task tray in Windows). Available value is black or white. Default is black for macOS, white for other platforms.

always_on_top

If this value is set to true, application is fixed to the top of window stack. After losing focus, application keeps to be shown. Default value is false.

normal_window

If this value is set to true, application will launch with normal window rather than menubar window. Default value is false.

url_blacklist

You can specify patterns of URL to block loading some contents. Default value is [].

[
    "https://*.github.com/*",
    "*://electron.github.io",
    "https://example.com/*"
]

These patterns will be passed to Electron's WebRequest.onBeforeRequest callback.

keymaps

Key-map value to specify key shortcuts.

Key is a key sequence. The format is the same as mousetrap package's one.

Value is an action name in the key shortcuts list of above section. Or you can specify the relative path to JavaScript file in configuration directory.

{
    "mod+q": "toggle-search",
    "mod+s": "path/to/select-some-tab.js"
}

With above, mod+s will execute {application directory}/path/to/select-some-tab.js in the current page. You can create a cusotmized key shortcut by writing up JavaScript code for your favorite pages.

Keywords

FAQs

Package last updated on 02 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc