History by Date

Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…

History by Date là gì?

History by Date là một tiện ích mở rộng Chrome được phát triển bởi https://baylaunch.com, và tính năng chính của nó là "Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng History by Date

Tải xuống các tệp mở rộng History by Date dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy.

* Navigate browser history by date
* Break usage down by continuous sessions
* See what domains you visited most, per session
* Example: "I used Chrome for 3 hours in the morning (mostly StackOverflow), and 2 hours in evening (mostly Gmail)"
* Calculates total hours spent online each day
* Filter out specific domains (Example: "Ignore Youtube.com")                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên History by Date History by Date
ID cancngpbjlfnkdfeigpododikkpelmfg
URL Chính Thức https://chromewebstore.google.com/detail/history-by-date/cancngpbjlfnkdfeigpododikkpelmfg
Mô tả Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…
Kích Thước Tệp 367 KB
Số Lần Cài Đặt 14,383
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2017-12-04
Ngày Phát Hành 2017-12-03
Đánh Giá 4.13/5 Tổng số 30 Đánh Giá
Nhà Phát Triển https://baylaunch.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "History by Date",
    "short_name": "HistoryDate",
    "version": "1.0.5",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "dist\/logo_128.png",
        "default_title": "History by Date"
    },
    "background": {
        "scripts": [
            "back\/background.js"
        ]
    },
    "content_security_policy": "default-src 'self'; script-src 'self' http:\/\/localhost:3000 'unsafe-eval'; connect-src http:\/\/localhost:3000; img-src 'self' chrome:\/\/favicon; style-src 'self' http:\/\/localhost:3000 'unsafe-inline'",
    "permissions": [
        "history",
        "storage",
        "chrome:\/\/favicon\/",
        "tabs"
    ],
    "web_accessible_resources": [
        "front\/*",
        "dist\/*"
    ],
    "icons": {
        "128": "dist\/logo_128.png"
    },
    "commands": {
        "open-history-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "View browser history"
        }
    }
}