Quick History

This Chrome extension allows users to view the history of the current active tab in their browser.

Quick Historyคืออะไร?

Quick History เป็นส่วนขยายของ Chrome ที่พัฒนาโดย probukdev และคุณลักษณะหลักของมันคือ "This Chrome extension allows users to view the history of the current active tab in their browser."

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

screenshot
screenshot
screenshot

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

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

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

                        Privacy is considered as the most important feature. Browsing data is stored in the browser itself and there are no network calls present. The browser history data is not synched anywhere else.

Deleting the extension will delete all data stored by the extension on your browser.

Quick History requests the minimum permissions required to operate the extension.                    

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

ชื่อ Quick History Quick History
ID dnngcfoognibnkkngfcamgaibjjlkfdn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn
คำอธิบาย This Chrome extension allows users to view the history of the current active tab in their browser.
ขนาดไฟล์ 258 KB
จำนวนการติดตั้ง 58
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2023-01-23
วันที่เผยแพร่ 2023-01-17
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา probukdev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://quick-history.web.app
URL หน้าช่วยเหลือ https://quick-history.web.app
URL หน้านโยบายความเป็นส่วนตัว https://quick-history.web.app/privacy-policy.html
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick History",
    "version": "0.1.2",
    "description": "This Chrome extension allows users to view the history of the current active tab in their browser.",
    "permissions": [
        "storage",
        "tabs",
        "unlimitedStorage",
        "history"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/quick-history-16.png",
        "24": "assets\/quick-history-24.png",
        "32": "assets\/quick-history-32.png",
        "64": "assets\/quick-history-64.png",
        "128": "assets\/quick-history-64.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/quick-history-16.png",
            "24": "assets\/quick-history-24.png",
            "32": "assets\/quick-history-32.png",
            "64": "assets\/quick-history-64.png",
            "128": "assets\/quick-history-64.png"
        },
        "default_title": "Quick History",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}