Peek History

A simple and minimal extension for quickly peeking and managing history.

Peek Historyคืออะไร?

Peek History เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Abdul Samad Ansari และคุณลักษณะหลักของมันคือ "A simple and minimal extension for quickly peeking and managing history."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        🔔 Heads Up: I worked on this project in my initial days just to learn extension development. It's time to call it a day. The functionality it offered is now a default feature in the Chrome browser, making this project obsolete. Unfortunately, I won't be making any more updates.


This extension helps you to quickly peek at history in the popup that helps you view, search, and delete your history without distracting you from your work. It also lets you restore your sessions across devices (Reopen recently closed tabs/windows or tabs/windows on other devices).

✨ Features

- Quickly Peek History in popup
- Delete specific or all history
- Reopen closed tabs (Full session)
- Restore sessions from other devices
- Fully controllable by keyboard
- Infinite scroll

⌨ Keyboard Shortcuts

- 🔵  Toggle Peek History (Open/Close extension popup) - Ctrl + Shift + H
- 🔍  Quickly Search in History - Alt + S (After opening popup)
- ⚙️  Open Extension Options/Settings - Alt + O (After opening popup)
- 📑  See Recently Closed Tabs/Other Tabs - Alt + ➡️  Right Arrow (After opening popup)
- 🔢  Open nth number of history link or the recently closed tab - Alt + (1 - 9) Number Keys 


🔒 PRIVACY NOTICE

This extension does not collect any of your personal data.

Please provide feedback if you like this extension. 
Thanks 😄                    

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

ชื่อ Peek History Peek History
ID gknodemjjckmkncijnedcpogffimkmbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/peek-history/gknodemjjckmkncijnedcpogffimkmbm
คำอธิบาย A simple and minimal extension for quickly peeking and managing history.
ขนาดไฟล์ 199 KB
จำนวนการติดตั้ง 103
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2024-02-26
วันที่เผยแพร่ 2020-04-01
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Abdul Samad Ansari
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Peek History",
    "version": "2.0.1",
    "description": "A simple and minimal extension for quickly peeking and managing history.",
    "author": "AbdulSamad Ansari",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js"
    },
    "action": {
        "default_title": "Peek History",
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "fontSettings",
        "tabs",
        "history",
        "storage",
        "sessions",
        "favicon"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon128.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "incognito": "not_allowed",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "MacCtrl+Shift+H"
            },
            "description": "Quickly toggles Peek History"
        }
    }
}