Random Tab

A browser action that selects a random tab open in the user's current window and opens it in a new window.

What is Random Tab?

Random Tab is a Chrome extension developed by Daniel Cates, and its main feature is "A browser action that selects a random tab open in the user's current window and opens it in a new window.".

Download Random Tab Extension CRX File

Download Random Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Random Tab Random Tab
ID ejbdbkngdhlekahamfbammngmibmoghd
Official URL https://chrome.google.com/webstore/detail/random-tab/ejbdbkngdhlekahamfbammngmibmoghd
Description A browser action that selects a random tab open in the user's current window and opens it in a new window.
File Size 12.3 KB
Installation Count 184
Current Version 0.1
Last Updated 2014-12-26
Publish Date 2014-12-26
Rating 3.80/5 Total 5 Ratings
Developer Daniel Cates
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Tab",
    "version": "0.1",
    "description": "A browser action that selects a random tab open in the user's current window and opens it in a new window.",
    "icons": {
        "32": "dice32.png",
        "64": "dice64.png",
        "128": "dice128.png"
    },
    "permissions": [
        "tabs",
        "windows"
    ],
    "browser_action": {
        "default_title": "Random Tab",
        "default_icon": "dice128.png"
    },
    "background": {
        "scripts": [
            "randomTab.js"
        ],
        "persistent": false
    }
}