Lone Tab

A new, unique session for every tab opened.

Lone Tab là gì?

Lone Tab là một tiện ích mở rộng Chrome được phát triển bởi Ian Mckay, và tính năng chính của nó là "A new, unique session for every tab opened.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lone Tab

Tải xuống các tệp mở rộng Lone Tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lone Tab Lone Tab
ID dlgodcdpmjmeegcakjjldfobmooajhhe
URL Chính Thức https://chromewebstore.google.com/detail/lone-tab/dlgodcdpmjmeegcakjjldfobmooajhhe
Mô tả A new, unique session for every tab opened.
Kích Thước Tệp 20.03 KB
Số Lần Cài Đặt 541
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-07-30
Ngày Phát Hành 2017-01-21
Đánh Giá 3.79/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Ian Mckay
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://files.ian.mn/privacy
Ngôn Ngữ Được Hỗ Trợ 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",
        "*:\/\/*\/*"
    ]
}