Tab Rotate

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

Qu'est-ce que Tab Rotate ?

Tab Rotate est une extension Chrome développée par Kevin Sheedy, et sa fonction principale est "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tab Rotate

Téléchargez les fichiers d'extension Tab Rotate au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Tab Rotate Tab Rotate
ID pjgjpabbgnnoohijnillgbckikfkbjed
URL Officiel https://chromewebstore.google.com/detail/tab-rotate/pjgjpabbgnnoohijnillgbckikfkbjed
Description Loop through a set of tabs - ideal for a Dashboard or Advertisement Display
Taille du Fichier 55.01 KB
Nombre d'Installations 32,128
Version Actuelle 0.6.2
Dernière Mise à Jour 2021-09-06
Date de Publication 2019-11-27
Évaluation 4.25/5 Total 44 Évaluations
Développeur Kevin Sheedy
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/KevinSheedy/chrome-tab-rotate
Langues Prises en Charge 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:\/\/*\/"
    ]
}