Tab Count
Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and/or close them.
什么是Tab Count?
Tab Count是由!sh开发的Chrome扩展程序,该扩展的主要功能是“Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and/or close them.”。
扩展截图
下载Tab Count扩展crx文件
下载Tab Count扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Displays number and list of tabs opened on the current or all Chrome windows. New: detects duplicate tabs and auto closes stale tabs (configurable). Features: - Extension icon and icon tooltip displays total number of tabs on all windows. - Click the icon to get number of tabs opened on that window and list of tabs with: - Tab's favicon. - A 'x' to close the tab. - Title of the tab that you can click to go to the tab. - Tab's URL by hovering the mouse over the title. - [optional] Detect duplicate tabs. Contributed by: github.com/rgluga - [optional] auto-close tabs that are X days stale. Contributed by: github.com/rgluga Configurable option: - Display list of tabs in the current or all windows. Notes: To get data on incognito window[s], go to extension's settings on chrome://extensions/ and select the 'Allow in incognito' checkbox.
扩展基本信息
名称 | Tab Count |
ID | cfokcacdaonnckdmopmcgeanhkebeaio |
官方URL | https://chromewebstore.google.com/detail/tab-count/cfokcacdaonnckdmopmcgeanhkebeaio |
简介 | Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and/or close them. |
文件大小 | 14.78 KB |
安装次数 | 23,348 |
当前版本 | 2.8 |
更新时间 | 2016-01-17 |
上架时间 | 2016-01-17 |
评分 | 4.23/5 共65次评分 |
开发者 | !sh |
付费类型 | free |
扩展官网 | https://github.com/developerish/tab-count |
帮助页面URL | https://github.com/developerish/tab-count |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Count", "version": "2.8", "description": "Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and\/or close them.", "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html", "default_name": "Tab Count", "default_icon": "images\/icon19.png", "default_title": "Tab Count" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "tabs" ] } |