Tab Hibernation

Sends your inactive tabs to sleep

Tab Hibernationคืออะไร?

Tab Hibernation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HorayNarea และคุณลักษณะหลักของมันคือ "Sends your inactive tabs to sleep"

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

screenshot
screenshot
screenshot

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

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

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

                        Tab Hibernation frees some memory and CPU on your computer by putting inactive tabs to sleep. Your tabs won't get lost and you can restore them with a single mouse click.

This extension is open-source, you can contribute at https://github.com/343max/TabHibernation/
If you speak english or german and a language that we don't support yet, please help with translation!

v1.0:
- option to disable hibernation for tabs with active audio
- Screenshots (when hibernating visible tabs)

v0.2.1:
- fix page restoration if history was cleared (for example after chrome crashed)
- use standard API instead of WebKit-specific KeyEvent for push-button-wakeup
- make only the wakeup-button clickable

v0.2.0:
- don't hibernate pinned tabs
- add context-menu-entry "hibernate this tab"
- locale-support (german and english)
- URL-whitelist-support
- faster hibernation
- unified code-formatting
- optipng optimized PNGs
- remove underscore.js                    

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

ชื่อ Tab Hibernation Tab Hibernation
ID ddklinnhageaolpojclheieamdiphabe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-hibernation/ddklinnhageaolpojclheieamdiphabe
คำอธิบาย Sends your inactive tabs to sleep
ขนาดไฟล์ 38.55 KB
จำนวนการติดตั้ง 1,907
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-04-21
วันที่เผยแพร่ 2018-04-21
คะแนน 3.50/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา HorayNarea
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/343max/TabHibernation
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/343max\/TabHibernation",
    "version": "1.0",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "__MSG_defaultTitle__"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "hibernateCurrentTab": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "__MSG_commandsDescription__"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "minimum_chrome_version": "54.0"
}