Tabs
A simple, usable index of all your tabs.
什么是Tabs?
Tabs是由kenmoore开发的Chrome扩展程序,该扩展的主要功能是“A simple, usable index of all your tabs.”。
扩展截图
下载Tabs扩展crx文件
下载Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Don't let a ton of tabs slow you down. Press Alt+T to toggle a heads-up list of all your tabs.
扩展基本信息
名称 | |
ID | cdbepibloojgbmnofbejfgglmdlifadj |
官方URL | https://chrome.google.com/webstore/detail/tabs/cdbepibloojgbmnofbejfgglmdlifadj |
简介 | A simple, usable index of all your tabs. |
文件大小 | 127 KB |
安装次数 | 1,000 |
当前版本 | 0.34 |
更新时间 | 2019-05-14 |
上架时间 | 2019-05-14 |
评分 | 4.67/5 共30次评分 |
开发者 | kenmoore |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabs", "description": "A simple, usable index of all your tabs.", "version": "0.34", "author": "Ken Moore", "browser_action": { "default_icon": { "19": "images\/browser-action-19.png", "38": "images\/browser-action-38.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "tabs", "activeTab", "sessions", "storage" ], "web_accessible_resources": [ "css\/styles.css", "css\/cleanslate.css", "fonts\/*.woff2", "images\/*.svg", "images\/*.png" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+T" } }, "list-tabs": { "suggested_key": { "default": "Shift+Alt+T" }, "description": "Show a list of all open tabs" } }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false } } |