anchor
Tab switcher for Google Chrome.
什么是anchor?
anchor是由Katsuma Tanaka开发的Chrome扩展程序,该扩展的主要功能是“Tab switcher for Google Chrome.”。
扩展截图
下载anchor扩展crx文件
下载anchor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Anchor is a tab switcher extension. You can search for tabs that match the words you enter. It's also possible to search for pages from your bookmarks or history by using the following filters. * "t:(keyword)" - Find from tabs. * "b:(keyword)" - Find from bookmarks. * "h:(keyword)" - Find from histories. If no filter is specified, it works the same as if "t:" were specified. Filters can also be combined. For example: * "tb:" - Find from tabs and bookmarks. * "tbh:" - Find from tabs, bookmarks and histories. After installation, select "Keyboard shortcuts" from the menu in the Chrome extension settings and setup the shortcuts.
扩展基本信息
名称 | |
ID | hgnlmkibblofcjgcljofkcdofkplhlgb |
官方URL | https://chromewebstore.google.com/detail/anchor/hgnlmkibblofcjgcljofkcdofkplhlgb |
简介 | Tab switcher for Google Chrome. |
文件大小 | 66.16 KB |
安装次数 | 161 |
当前版本 | 3.7.0 |
更新时间 | 2023-05-07 |
上架时间 | 2020-05-23 |
评分 | 5.00/5 共1次评分 |
开发者 | Katsuma Tanaka |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/questbeat/anchor |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "anchor", "description": "Tab switcher for Google Chrome.", "version": "3.7.0", "icons": { "16": "public\/icons\/icon16.png", "48": "public\/icons\/icon48.png", "128": "public\/icons\/icon128.png" }, "commands": { "toggle-anchor": { "description": "Toggle anchor", "suggested_key": { "default": "Ctrl+S", "mac": "MacCtrl+S" } }, "toggle-anchor-with-bookmark-mode": { "description": "Toggle anchor (bookmark)" }, "toggle-anchor-with-history-mode": { "description": "Toggle anchor (history)" } }, "background": { "service_worker": "dist\/service_worker\/index.js" }, "permissions": [ "bookmarks", "favicon", "history", "system.display", "tabs" ] } |