Lone Tab

A new, unique session for every tab opened.

Lone Tabคืออะไร?

Lone Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ian Mckay และคุณลักษณะหลักของมันคือ "A new, unique session for every tab opened."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lone Tab

ดาวน์โหลดไฟล์ส่วนขยาย 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",
        "*:\/\/*\/*"
    ]
}