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란 무엇입니까?

History by Date은(는) https://baylaunch.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…"입니다.

확장 프로그램 스크린샷

screenshot

History by Date 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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")                    

확장 프로그램 기본 정보

이름 History by Date History by Date
ID cancngpbjlfnkdfeigpododikkpelmfg
공식 URL https://chromewebstore.google.com/detail/history-by-date/cancngpbjlfnkdfeigpododikkpelmfg
설명 Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…
파일 크기 367 KB
설치 횟수 14,383
현재 버전 1.0.5
최근 업데이트 2017-12-04
출시 날짜 2017-12-03
평점 4.13/5 총 30 개의 평점
개발자 https://baylaunch.com
결제 유형 free
지원되는 언어 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"
        }
    }
}