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”。

擴展截圖

screenshot

下載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 Simple Tab Carousel
ID ogkhchpclioobkplbmkjekalofgddagc
官方網址 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"
    }
}