Tabji

The privacy-first lightweight alternative to The Great Suspender with cloud sync

Tabjiคืออะไร?

Tabji เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Imed Adel และคุณลักษณะหลักของมันคือ "The privacy-first lightweight alternative to The Great Suspender with cloud sync"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Tabji ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tabji is a lightweight extension for reducing the memory usage of Chrome by suspending unused tabs. The tool is inspired by The Great Suspender, however it relies on Chrome new APIs (discard and service workers) for a greater performance.

Tabji also comes with cloud sync for saved sessions and offers up to 3 saved sessions for free users. This eliminates the possibility of losing your work tabs and allows you to share your sessions with other people. The premium version (costing only $8 per year) offers unlimited synced and shared sessions.



# Updates

## 2.4.0
• Add dimmed favicons for suspended tabs

## 2.3.0
• Add session restore and faster saving

## 2.2.2
• Fix empty ignore list

## 2.2.1
• Fix app links

## 2.2.0
• UI overhaul
• Fix bug with suspending tabs with active forms

## 2.1.0
• More accessible dark mode
• Temporarily disable suspension for certain tabs
• Unsuspend on refresh
• Better handling for shortcuts
• New implementation for restoring scroll position
• Correctly handle tabs that were previously ignored by the suspension algorithm
• Add automatic unsuspend on tab view                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tabji Tabji
ID ijfljkfghflbjebbccojlpakfcjibecb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tabji/ijfljkfghflbjebbccojlpakfcjibecb
คำอธิบาย The privacy-first lightweight alternative to The Great Suspender with cloud sync
ขนาดไฟล์ 98.71 KB
จำนวนการติดตั้ง 780
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2022-07-25
วันที่เผยแพร่ 2021-05-08
คะแนน 4.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Imed Adel
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://tabji.link
URL หน้านโยบายความเป็นส่วนตัว https://tabji.link/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tabji",
    "version": "2.5.0",
    "description": "The privacy-first lightweight alternative to The Great Suspender with cloud sync",
    "action": {
        "default_icon": {
            "16": ".\/assets\/[email protected]",
            "32": ".\/assets\/[email protected]"
        },
        "default_title": "Tabji",
        "default_popup": ".\/views\/popup\/index.html"
    },
    "icons": {
        "16": ".\/assets\/[email protected]",
        "32": ".\/assets\/[email protected]",
        "48": ".\/assets\/[email protected]",
        "128": ".\/assets\/[email protected]"
    },
    "options_page": ".\/views\/options\/index.html",
    "background": {
        "service_worker": ".\/background.global.js"
    },
    "permissions": [
        "tabs",
        "alarms",
        "storage",
        "cookies",
        "contextMenus",
        "tabGroups",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "commands": {
        "2": {
            "description": "Suspend\/Unsuspend this tab"
        },
        "3": {
            "description": "Never suspend this URL"
        },
        "4": {
            "description": "Never suspend this domain"
        },
        "5": {
            "description": "Suspend selected tabs"
        },
        "6": {
            "description": "Unsuspend selected tabs"
        },
        "7": {
            "description": "Suspend all tabs in this window"
        },
        "8": {
            "description": "Unsuspend all tabs in this window"
        },
        "9": {
            "description": "Suspend all tabs in all windows"
        },
        "10": {
            "description": "Unsuspend all tabs in all windows"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tabji.link\/s\/*"
            ],
            "js": [
                ".\/content.global.js"
            ]
        }
    ]
}