Lone Tab

A new, unique session for every tab opened.

什么是Lone Tab?

Lone Tab是由Ian Mckay开发的Chrome扩展程序,该扩展的主要功能是“A new, unique session for every tab opened.”。

扩展截图

screenshot

下载Lone Tab扩展crx文件

下载Lone Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        With this extension enabled, each tab will have a unique session. This is particularly useful for software testers or those with a large amount of accounts for a specific site.

To enable, click the icon and change the slider to the ON position. Any tabs created will now have it's own unique session.                    

扩展基本信息

名称 Lone Tab Lone Tab
ID dlgodcdpmjmeegcakjjldfobmooajhhe
官方URL https://chromewebstore.google.com/detail/lone-tab/dlgodcdpmjmeegcakjjldfobmooajhhe
简介 A new, unique session for every tab opened.
文件大小 20.03 KB
安装次数 541
当前版本 1.0.1
更新时间 2021-07-30
上架时间 2017-01-21
评分 3.79/5 共14次评分
开发者 Ian Mckay
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL http://files.ian.mn/privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lone Tab",
    "short_name": "Lone Tab",
    "version": "1.0.1",
    "manifest_version": 2,
    "author": "Ian Mckay",
    "description": "A new, unique session for every tab opened.",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "common.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "inject.js",
        "common.js"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/*\/*"
    ]
}