Tab Roulette

Tab slideshow plugin - Awesome for in-office dashboards!

Tab Roulette क्या है?

Tab Roulette https://blog.developer-b.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tab slideshow plugin - Awesome for in-office dashboards!"।

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

screenshot

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

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

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

                        This extension will cycle through any open tabs. It comes with an option page allowing you to specify how long each tab should be displayed and whether or not it should be reloaded. 

Upon opening the options dialog it'll cycle through all the tabs to take a screenshot making it easier to see which tab you're configuring. 

Keep in mind that this was an evening project and probably contain a lot of rough edges so don't blame me if something catches on fire.                    

एक्सटेंशन की मूल जानकारी

नाम Tab Roulette Tab Roulette
ID dlgdimppibbgkjbhnfbkgbfgiclmjlch
आधिकारिक URL https://chromewebstore.google.com/detail/tab-roulette/dlgdimppibbgkjbhnfbkgbfgiclmjlch
विवरण Tab slideshow plugin - Awesome for in-office dashboards!
फ़ाइल का आकार 237 KB
स्थापना संख्या 1,250
वर्तमान संस्करण 0.5
अंतिम अपडेट 2013-08-30
प्रकाशन तिथि 2013-08-30
रेटिंग 4.75/5 कुल 12 रेटिंग्स
डेवलपर https://blog.developer-b.com
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/kimble/chrome-tab-roulette
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Roulette",
    "version": "0.5",
    "description": "Tab slideshow plugin - Awesome for in-office dashboards!",
    "options_page": "src\/view\/mission-control.html",
    "browser_action": {
        "default_icon": "src\/images\/icon_19x19_grey.png",
        "default_title": "Tab roulette"
    },
    "background": {
        "scripts": [
            "src\/jslib\/underscore-1.4.3.js",
            "src\/js\/lib.js",
            "src\/js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "background",
        ""
    ],
    "icons": {
        "16": "src\/images\/icon_16x16.png",
        "48": "src\/images\/icon_48x48.png",
        "128": "src\/images\/icon_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/css\/content-script.css"
            ],
            "js": [
                "src\/jslib\/jquery-1.8.3.js",
                "src\/js\/content-script.js"
            ]
        }
    ]
}