Recent Tabs with your browsing history

Undo closed tabs with your browsing history

Recent Tabs with your browsing historyคืออะไร?

Recent Tabs with your browsing history เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aynur Safin และคุณลักษณะหลักของมันคือ "Undo closed tabs with your browsing history"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Recent Tabs with your browsing history

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

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

                        Extension to restore recently closed tabs. The mechanism is similar to Chrome's built-in functions "Recent Tabs" (Ctrl-Shift-T). In the restored tab kept the entire history of browsing, ie, The buttons Back and Forward.

ver 0.9
+ Added support for OS dark theme

ver 0.8
+ Added permission request for finding closed tabs in History

ver 0.7
+ Search for closed tabs and History
+ Hot keys settings
+ The counter of the closed tabs is removed
+ Font size settings

ver 0.6
+ Also available Chrome tabs open on your other devices                    

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

ชื่อ Recent Tabs with your browsing history Recent Tabs with your browsing history
ID khjgklaeknnibmeeanmbfjcnjablcpil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/recent-tabs-with-your-bro/khjgklaeknnibmeeanmbfjcnjablcpil
คำอธิบาย Undo closed tabs with your browsing history
ขนาดไฟล์ 103 KB
จำนวนการติดตั้ง 14,095
เวอร์ชันปัจจุบัน 0.9
อัปเดตครั้งล่าสุด 2021-02-28
วันที่เผยแพร่ 2020-08-05
คะแนน 4.29/5 รวมทั้งหมด 126 คะแนน
ผู้พัฒนา Aynur Safin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Aynur Safin",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescr__",
    "version": "0.9",
    "manifest_version": 2,
    "minimum_chrome_version": "37",
    "default_locale": "en",
    "icons": {
        "16": "img\/ext_icons\/icon-16.png",
        "24": "img\/ext_icons\/icon-24.png",
        "32": "img\/ext_icons\/icon-32.png",
        "48": "img\/ext_icons\/icon-48.png",
        "128": "img\/ext_icons\/icon-128.png",
        "256": "img\/ext_icons\/icon-256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/ext_icons\/icon-16.png",
            "24": "img\/ext_icons\/icon-24.png",
            "32": "img\/ext_icons\/icon-32.png",
            "48": "img\/ext_icons\/icon-48.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/storage.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "img\/ext_icons\/icon-48.png"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+X"
            }
        },
        "undoLastTab": {
            "suggested_key": {
                "default": "Alt+Z"
            },
            "description": "__MSG_hotkey_UndoLastTab__"
        },
        "openWindow": {
            "suggested_key": {
                "default": "Alt+Shift+Z"
            },
            "description": "__MSG_hotkey_OpenWindow__"
        }
    },
    "permissions": [
        "storage",
        "sessions",
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "optional_permissions": [
        "history"
    ]
}