History Limiter Custom
Limits the number of items the browser will keep in history by days.
History Limiter Custom란 무엇입니까?
History Limiter Custom은(는) https://blandlifedev.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Limits the number of items the browser will keep in history by days."입니다.
확장 프로그램 스크린샷
History Limiter Custom 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A personal edit of nschneirov's History Limiter put up to share. Overall the logic remain unchanged from the original version. Main changes: - code reworks to eliminate need for jQuery and to facilitate manifest ver 2 - event page enabled - no changes to logic, no new functions The main aim of this edit is to make it event page enabled so it unloads when not needed thus saving memory. ================= CHANGELOG: 1.2 [21/04/2018] - back to using a set button to overcome the premature clear - some minor UI changes 1.1.1 [10/05/2014] - history will be trimmed right after the day value is edited 1.1 [27/04/2014] - tidying and restructuring of code - changed options page to auto save - added textfield number check - added working 0 days mode (no history)
확장 프로그램 기본 정보
이름 | History Limiter Custom |
ID | ibpfkplbhnbiklpjacjbaelahebmbmpp |
공식 URL | https://chromewebstore.google.com/detail/history-limiter-custom/ibpfkplbhnbiklpjacjbaelahebmbmpp |
설명 | Limits the number of items the browser will keep in history by days. |
파일 크기 | 9.56 KB |
설치 횟수 | 6,707 |
현재 버전 | 1.2 |
최근 업데이트 | 2021-04-01 |
출시 날짜 | 2018-04-20 |
평점 | 4.05/5 총 37 개의 평점 |
개발자 | https://blandlifedev.blogspot.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://blandlifedev.blogspot.com/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "History Limiter Custom", "version": "1.2", "manifest_version": 2, "description": "Limits the number of items the browser will keep in history by days.", "icons": { "48": "icon.png" }, "background": { "scripts": [ "bg.js", "common.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "history" ] } |