Close Tab
Add a tab close action to the page context menu
什么是Close Tab?
Close Tab是由Hansifer开发的Chrome扩展程序,该扩展的主要功能是“Add a tab close action to the page context menu”。
扩展截图
下载Close Tab扩展crx文件
下载Close Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Close Tab lets you close a web page in a snap with a right mouse click and a key press. This is often quicker than moving the mouse cursor up to the tab's close icon or taking your hand off the mouse to use a keyboard shortcut that requires both hands. The shortcut key that closes the tab is customizable.
扩展基本信息
名称 | Close Tab |
ID | lnchemdcmhoccciihokpdkkekmnejfhj |
官方URL | https://chromewebstore.google.com/detail/close-tab/lnchemdcmhoccciihokpdkkekmnejfhj |
简介 | Add a tab close action to the page context menu |
文件大小 | 25.84 KB |
安装次数 | 1,786 |
当前版本 | 1.8.0 |
更新时间 | 2023-11-28 |
上架时间 | 2020-05-09 |
评分 | 4.73/5 共22次评分 |
开发者 | Hansifer |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Tab", "version": "1.8.0", "minimum_chrome_version": "91", "description": "Add a tab close action to the page context menu", "default_locale": "en", "manifest_version": 3, "options_ui": { "page": "options_inline.html", "open_in_tab": false }, "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "action": { "default_icon": { "19": "img\/logo19.png", "38": "img\/logo38.png" }, "default_title": "Close selected tab" }, "background": { "service_worker": "bg.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "contextMenus", "storage" ] } |