Simple Tab Carousel
Tab carousel which pauses on a window focus
什么是Simple Tab Carousel?
Simple Tab Carousel是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Tab carousel which pauses on a window focus”。
扩展截图
下载Simple Tab Carousel扩展crx文件
下载Simple Tab Carousel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically cycle through your tabs. Useful for monitoring lots of information on a single screen. Unlike other carousels it stops cycling when the window is focused, and start the carousel again when you focus on something else. This way you can always have a detailed look at something when you need it without disabling the extension. Default interval is 10 seconds (10000 milliseconds). Open source, If you like the extension, don't hesitate to star it ;) https://github.com/aigoncharov/chrome-tab-carousel Note: Icons are borrowed from fontawesome (https://fontawesome.com/icons/sync-alt?style=solid) under this license (https://fontawesome.com/license). Icons are not modified, but converted to the .png.
扩展基本信息
名称 | Simple Tab Carousel |
ID | ogkhchpclioobkplbmkjekalofgddagc |
官方URL | https://chromewebstore.google.com/detail/simple-tab-carousel/ogkhchpclioobkplbmkjekalofgddagc |
简介 | Tab carousel which pauses on a window focus |
文件大小 | 20.59 KB |
安装次数 | 1,650 |
当前版本 | 0.2.0 |
更新时间 | 2020-04-26 |
上架时间 | 2020-04-26 |
评分 | 5.00/5 共2次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/aigoncharov/chrome-tab-carousel |
帮助页面URL | https://github.com/aigoncharov/chrome-tab-carousel/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Tab Carousel", "version": "0.2.0", "description": "Tab carousel which pauses on a window focus", "manifest_version": 2, "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "permissions": [ "storage" ], "browser_action": [], "options_ui": { "page": "dist\/options.html", "open_in_tab": true }, "icons": { "16": "favicon16.png", "32": "favicon32.png", "48": "favicon48.png", "128": "favicon128.png" } } |