CloseTabsByDomain
Close all tabs by domain
什么是CloseTabsByDomain?
CloseTabsByDomain是由https://ragerworks.com开发的Chrome扩展程序,该扩展的主要功能是“Close all tabs by domain”。
扩展截图
下载CloseTabsByDomain扩展crx文件
下载CloseTabsByDomain扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With the browser extension CloseTabsByDomain you are able to close all open tabs of a domain comfortably. Easily close tabs by domain!
There are two ways to use the extension:
- Right-click in the page
- Click on the extension button
Use the settings to configure how the tabs in the CloseTabsByDomain list are sorted: - Browser order:
- Alphabetical
- By number of open tabs
New:
- Sort open tabs by domain 扩展基本信息
| 名称 | |
| ID | hjnfjlehafmdppfncbjafjghkfkgiaml |
| 官方URL | https://chromewebstore.google.com/detail/closetabsbydomain/hjnfjlehafmdppfncbjafjghkfkgiaml |
| 简介 | Close all tabs by domain |
| 文件大小 | 61.61 KB |
| 安装次数 | 95 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2020-10-10 |
| 上架时间 | 2018-12-09 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://ragerworks.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://ragerworks.com/static/close-tabs-by-domain.html |
| 支持的语言 | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CloseTabsByDomain",
"description": "Close all tabs by domain",
"version": "1.2.0",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "img\/logo\/icon_16.png",
"48": "img\/logo\/icon_48.png",
"128": "img\/logo\/icon_128.png"
},
"permissions": [
"tabs",
"storage",
"contextMenus"
],
"options_page": "options.html",
"browser_action": {
"default_icon": {
"16": "img\/logo\/icon_16.png",
"48": "img\/logo\/icon_48.png"
},
"default_title": "CloseByDomain",
"default_popup": "popup.html"
},
"default_locale": "en"
} | |