Simple Tab Carousel

Tab carousel which pauses on a window focus

Was ist Simple Tab Carousel?

Simple Tab Carousel ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Tab carousel which pauses on a window focus".

Erweiterungsscreenshots

screenshot

Simple Tab Carousel-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Tab Carousel-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Simple Tab Carousel Simple Tab Carousel
ID ogkhchpclioobkplbmkjekalofgddagc
Offizielle URL https://chromewebstore.google.com/detail/simple-tab-carousel/ogkhchpclioobkplbmkjekalofgddagc
Beschreibung Tab carousel which pauses on a window focus
Dateigröße 20.59 KB
Installationsanzahl 1,650
Aktuelle Version 0.2.0
Letztes Update 2020-04-26
Veröffentlichungsdatum 2020-04-26
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/aigoncharov/chrome-tab-carousel
Hilfeseite URL https://github.com/aigoncharov/chrome-tab-carousel/issues
Unterstützte Sprachen 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"
    }
}