Show Tab List
Show all sites in the current page
什么是Show Tab List?
Show Tab List是由pinibalilihamelech开发的Chrome扩展程序,该扩展的主要功能是“Show all sites in the current page”。
扩展截图
下载Show Tab List扩展crx文件
下载Show Tab List扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Press Ctrl+Shift+Y to view a list of the sites used in the current page.
扩展基本信息
名称 | Show Tab List |
ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
官方URL | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
简介 | Show all sites in the current page |
文件大小 | 8.67 KB |
安装次数 | 14,454 |
当前版本 | 0.1 |
更新时间 | 2015-03-13 |
上架时间 | 2015-03-13 |
评分 | 2.11/5 共9次评分 |
开发者 | pinibalilihamelech |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Tab List", "description": "Show all sites in the current page", "version": "0.1", "manifest_version": 2, "icons": { "16": "resources\/images\/icon-16.png", "48": "resources\/images\/icon-48.png", "128": "resources\/images\/icon-128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "background": { "scripts": [ "resources\/js\/myBackground.js" ] }, "commands": { "toggle-tab-list": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle tab list" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "resources\/js\/page.js" ] } ] } |