Simple History Manager
A simple Chrome history manager.
什么是Simple History Manager?
Simple History Manager是由https://guokai.dev开发的Chrome扩展程序,该扩展的主要功能是“A simple Chrome history manager.”。
扩展截图
下载Simple History Manager扩展crx文件
下载Simple History Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will replace Chrome's default history manager. It can search or clear browsing history by date range. How to use: • Click this extension's icon • Click menu item from Chrome -> History -> Show Full History • Use Chrome keyboard shortcuts, Windows/Linux is Ctrl + h, Mac is ⌘ + y It supports dark/light theme automatically. Visit https://guokai.dev/ to see all extensions created by me.
扩展基本信息
名称 | Simple History Manager |
ID | cojehmillnknijdaddcpngglfjmillmg |
官方URL | https://chromewebstore.google.com/detail/simple-history-manager/cojehmillnknijdaddcpngglfjmillmg |
简介 | A simple Chrome history manager. |
文件大小 | 76.31 KB |
安装次数 | 2,330 |
当前版本 | 1.3.0 |
更新时间 | 2023-08-25 |
上架时间 | 2020-03-31 |
评分 | 4.54/5 共13次评分 |
开发者 | https://guokai.dev |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://guokai.dev/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple History Manager", "version": "1.3.0", "author": "Guokai Han", "manifest_version": 3, "description": "A simple Chrome history manager.", "offline_enabled": true, "minimum_chrome_version": "104", "icons": { "16": "icon\/16.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "chrome_url_overrides": { "history": "history.html" }, "action": [], "background": { "service_worker": "background.js" }, "permissions": [ "history", "storage", "sessions", "tabs", "favicon" ] } |