Kloser
Close all tabs and open default tab
什么是Kloser?
Kloser是由Aleksey Ivashin开发的Chrome扩展程序,该扩展的主要功能是“Close all tabs and open default tab”。
扩展截图
下载Kloser扩展crx文件
下载Kloser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple extension for closing all tabs in active window and opening New Tab Page or your selected page. You can edit settings of this extension, such as you can choose preferred tab which will be opened after using the extension and you can set will be extension close pinned tabs. Use the shortcut: Ctrl + Q
扩展基本信息
名称 | Kloser |
ID | joanfadldlkgclnmonllgcbnepcbfepk |
官方URL | https://chromewebstore.google.com/detail/kloser/joanfadldlkgclnmonllgcbnepcbfepk |
简介 | Close all tabs and open default tab |
文件大小 | 9.99 KB |
安装次数 | 14 |
当前版本 | 3.0 |
更新时间 | 2023-12-06 |
上架时间 | 2017-04-20 |
评分 | 4.80/5 共5次评分 |
开发者 | Aleksey Ivashin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Kloser", "author": "Aleksey Ivashin", "description": "Close all tabs and open default tab", "version": "3.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "service_worker.js" }, "permissions": [ "tabs", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Q", "windows": "Ctrl+Q", "mac": "Command+Q", "chromeos": "Ctrl+Q", "linux": "Ctrl+Q" } } }, "options_ui": { "page": "options\/options.html" }, "action": { "default_title": "Kloser", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "content_security_policy": [] } |