Simple Hotkeys
A lightweight Chrome extension for enhancing existing Chrome hotkeys.
什么是Simple Hotkeys?
Simple Hotkeys是由liuyang1520开发的Chrome扩展程序,该扩展的主要功能是“A lightweight Chrome extension for enhancing existing Chrome hotkeys.”。
扩展截图
下载Simple Hotkeys扩展crx文件
下载Simple Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
# Simple Hotkeys A lightweight Chrome extension for enhancing existing Chrome hotkeys. While there are a plenty of extensions giving users a variety of configurations for shortcuts/hotkeys, the ideas behind this application are - lightweight - preconfigured - intuitively - simple ## Features - Search text in new tab and switch to it: `Ctrl/Command(⌘) + Shift(⇧) + k` - Search text in new tab in background: `Ctrl/Command(⌘) + Shift(⇧) + l` - Pin/Unpin current tab: `Ctrl/Command(⌘) + Shift(⇧) + p` - Detach current tab to a new window: no default - Navigate to last active tab: `Ctrl/Command(⌘) + Shift(⇧) + e` `Command(⌘)` is replaced with `Ctrl` key for Windows computers. ## Issues Please feel free to contribute directly or create issues for any bugs and feature suggestions. ## Source Code https://github.com/liuyang1520/simple-hotkeys
扩展基本信息
名称 | Simple Hotkeys |
ID | ciindhhkpajpgcpemjgpbbieiokifdeh |
官方URL | https://chromewebstore.google.com/detail/simple-hotkeys/ciindhhkpajpgcpemjgpbbieiokifdeh |
简介 | A lightweight Chrome extension for enhancing existing Chrome hotkeys. |
文件大小 | 27.72 KB |
安装次数 | 23 |
当前版本 | 1.1.2 |
更新时间 | 2023-08-24 |
上架时间 | 2019-06-16 |
评分 | 5.00/5 共1次评分 |
开发者 | liuyang1520 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/liuyang1520/simple-hotkeys |
帮助页面URL | https://github.com/liuyang1520/simple-hotkeys |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.2", "manifest_version": 3, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "service_worker": "scripts\/background.js" }, "permissions": [ "scripting", "storage", "background" ], "host_permissions": [ "*:\/\/*\/*" ], "commands": { "search-in-new-active-tab": { "description": "Search and jump", "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" } }, "search-in-new-background-tab": { "description": "Search in background", "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" } }, "pin-unpin-tab": { "description": "Pin \/ unpin", "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" } }, "navigate-to-last-active-tab": { "description": "Navigate to last active tab", "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } }, "extract-tab-to-new-window": { "description": "Extract to window" } }, "action": { "default_popup": "popup.html", "default_title": "Simple-Hotkeys", "default_icon": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" } } } |