Tab Rotate

Loop through a set of tabs - ideal for a Dashboard or Advertisement Display

什麼是Tab Rotate?

Tab Rotate是由Kevin Sheedy開發的Chrome擴展程式,該擴展的主要功能是“Loop through a set of tabs - ideal for a Dashboard or Advertisement Display”。

擴展截圖

screenshot

下載Tab Rotate擴展crx文件

下載Tab Rotate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Allows Chrome to automatically cycle through a set of tabs. Ideal for a Dashboard or wall-mounted display.

 - Configured via a JSON file
 - Preloads tabs for smoother transitions
 - Configuration can be loaded from a remote server

NOTE: Does not rotate through your currently open tabs

Support the project on Patreon:
https://www.patreon.com/kevdev                    

擴展基本資訊

名稱 Tab Rotate Tab Rotate
ID pjgjpabbgnnoohijnillgbckikfkbjed
官方網址 https://chromewebstore.google.com/detail/tab-rotate/pjgjpabbgnnoohijnillgbckikfkbjed
簡介 Loop through a set of tabs - ideal for a Dashboard or Advertisement Display
檔案大小 55.01 KB
安裝次數 32,128
目前版本 0.6.2
更新時間 2021-09-06
上架時間 2019-11-27
評分 4.25/5 共 44 次評分
開發者 Kevin Sheedy
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/KevinSheedy/chrome-tab-rotate
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Rotate",
    "description": "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display",
    "version": "0.6.2",
    "browser_action": {
        "default_icon": "img\/Play-38.png",
        "default_title": "Start Tab Rotate"
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js",
            "import-analytics.js",
            "hot-reload.js"
        ]
    },
    "icons": {
        "16": "img\/Play-16.png",
        "32": "img\/Play-32.png",
        "48": "img\/Play-48.png",
        "128": "img\/Play-128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/unpkg.com; object-src 'self'",
    "permissions": [
        "storage",
        "https:\/\/ajax.googleapis.com\/",
        "file:\/\/*\/",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}