Tab Rotate

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

Was ist Tab Rotate?

Tab Rotate ist eine Chrome-Erweiterung, die von Kevin Sheedy entwickelt wurde, und ihr Hauptmerkmal ist "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display".

Erweiterungsscreenshots

screenshot

Tab Rotate-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Rotate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Tab Rotate Tab Rotate
ID pjgjpabbgnnoohijnillgbckikfkbjed
Offizielle URL https://chromewebstore.google.com/detail/tab-rotate/pjgjpabbgnnoohijnillgbckikfkbjed
Beschreibung Loop through a set of tabs - ideal for a Dashboard or Advertisement Display
Dateigröße 55.01 KB
Installationsanzahl 32,128
Aktuelle Version 0.6.2
Letztes Update 2021-09-06
Veröffentlichungsdatum 2019-11-27
Bewertung 4.25/5 Insgesamt 44 Bewertungen
Entwickler Kevin Sheedy
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/KevinSheedy/chrome-tab-rotate
Unterstützte Sprachen 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:\/\/*\/"
    ]
}