Active tabs
Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.
什么是Active tabs?
Active tabs是由https://shaunsational.github.io开发的Chrome扩展程序,该扩展的主要功能是“Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.”。
扩展截图
下载Active tabs扩展crx文件
下载Active tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Shows a count of total active tabs across all windows on the browser icon. When clicked a searchable list of all the tabs appears broken down by window (each window is collapsible). Clicking any tab will immediately focus that tab, even if it is minimized. You can also close individual tabs or entire windows from the list. You have to "Allow in incognito" on the manage extensions page to show incognito tabs, it will not show them by default. Updates - 1.2 - now adds a background to tabs playing audio, also searchable by using the keyword "audio" 1.3 - added keyboard shortcuts (open help by hitting ?), prefixed keywords with _ to help separate further. @shaunsational
扩展基本信息
名称 | Active tabs |
ID | pbihheplocihoglaokfdcjadbjlhijgb |
官方URL | https://chromewebstore.google.com/detail/active-tabs/pbihheplocihoglaokfdcjadbjlhijgb |
简介 | Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows. |
文件大小 | 50.87 KB |
安装次数 | 510 |
当前版本 | 1.3.1 |
更新时间 | 2018-11-06 |
上架时间 | 2018-11-06 |
评分 | 4.20/5 共5次评分 |
开发者 | https://shaunsational.github.io |
付费类型 | free |
扩展官网 | https://shaunsational.github.io/extensions#active-tabs |
帮助页面URL | https://github.com/shaunsational/chrome-ext-ActiveTabs/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Active tabs", "description": "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.", "version": "1.3.1", "icons": { "16": "assets\/icon.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "browser_action": { "default_icon": { "16": "assets\/icon.png", "48": "assets\/icon_48.png" }, "default_title": "Active tabs", "default_popup": "popup.htm" }, "permissions": [ "*:\/\/*\/", "chrome:\/\/favicon\/", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |