Tab Rotate

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

Tab Rotate क्या है?

Tab Rotate Kevin Sheedy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab Rotate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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:\/\/*\/"
    ]
}