History Viewer
Easy access to your current browser session's history
History Viewer란 무엇입니까?
History Viewer은(는) https://james-coyle.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy access to your current browser session's history"입니다.
확장 프로그램 스크린샷
History Viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Provides quick access to the history of your current browsing session. Easily return to a page you were looking at 10 minutes ago without having to delve into your browser history.
확장 프로그램 기본 정보
이름 | |
ID | lepdeiameebhegahgipnooenlpndibng |
공식 URL | https://chromewebstore.google.com/detail/history-viewer/lepdeiameebhegahgipnooenlpndibng |
설명 | Easy access to your current browser session's history |
파일 크기 | 1.49 MB |
설치 횟수 | 45 |
현재 버전 | 0.1 |
최근 업데이트 | 2022-10-16 |
출시 날짜 | 2022-10-16 |
개발자 | https://james-coyle.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/JamesCoyle/history-extention |
도움말 페이지 URL | https://github.com/JamesCoyle/downloads-extention/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "History Viewer", "version": "0.1", "short_name": "History", "author": "James Coyle", "description": "Easy access to your current browser session's history", "icons": { "512": "icon.png" }, "permissions": [ "history", "storage", "favicon" ], "action": { "default_popup": "popup.html", "default_title": "History" }, "options_page": "options.html", "commands": { "_execute_action": { "suggested_key": { "windows": "Alt+H", "mac": "Alt+H", "chromeos": "Alt+H", "linux": "Alt+H" } } }, "background": { "service_worker": "build\/background.js" } } |