Open Tabs
Show open tabs
什么是Open Tabs?
Open Tabs是由Syl开发的Chrome扩展程序,该扩展的主要功能是“Show open tabs”。
扩展截图
下载Open Tabs扩展crx文件
下载Open Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is open-source! Contribute on https://github.com/sylouuu/chrome-open-tabs Show open tabs: - Go to tab - Close tab - Reload tab - Duplicate tab - Pin/unpin tab - Hide tab The open tabs are updated in real time. Changelog: https://github.com/sylouuu/chrome-open-tabs/releases
扩展基本信息
名称 | Open Tabs |
ID | cepfpldhbcfaklnnldhoaahgliijehap |
官方URL | https://chromewebstore.google.com/detail/open-tabs/cepfpldhbcfaklnnldhoaahgliijehap |
简介 | Show open tabs |
文件大小 | 34.91 KB |
安装次数 | 1,226 |
当前版本 | 0.3.2 |
更新时间 | 2017-06-22 |
上架时间 | 2017-06-22 |
评分 | 3.75/5 共12次评分 |
开发者 | Syl |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sylouuu/chrome-open-tabs |
帮助页面URL | https://github.com/sylouuu/chrome-open-tabs/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open Tabs", "version": "0.3.2", "description": "Show open tabs", "homepage_url": "https:\/\/github.com\/sylouuu\/chrome-open-tabs", "icons": { "16": "img\/icon_16.png", "32": "img\/icon_32.png", "48": "img\/icon_48.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": "img\/icon_48.png" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'", "options_page": "html\/options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "img\/*.png" ], "permissions": [ "tabs", "storage" ] } |