History Janitor
A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it
什么是History Janitor?
History Janitor是由Nex开发的Chrome扩展程序,该扩展的主要功能是“A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it”。
扩展截图
下载History Janitor扩展crx文件
下载History Janitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
History Janitor is a good way to manage what's showing up in your address bar. Let's say you're starting to type "you" or "red" and some unwanted URLs are showing up... Well, with this extension, you can prevent that by adding the keyword to the blacklist. It will automatically search (every minutes) and delete the URLs that contains any keywords in the blacklist. Suggestions and feedback are welcomed !
扩展基本信息
名称 | |
ID | kkaakfpimddpndjdgopjbloioapgmlpa |
官方URL | https://chrome.google.com/webstore/detail/history-janitor/kkaakfpimddpndjdgopjbloioapgmlpa |
简介 | A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it |
文件大小 | 174 KB |
安装次数 | 111 |
当前版本 | 2.0 |
更新时间 | 2014-02-03 |
上架时间 | 2014-02-03 |
评分 | 3.00/5 共4次评分 |
开发者 | Nex |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "History Janitor", "version": "2.0", "author": "Francis Lacoste", "description": "A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "history", "storage", "alarms" ], "options_page": "hj.html", "browser_action": { "default_icon": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png", "19": "img\/icon128.png", "38": "img\/icon128.png" }, "default_title": "History Janitor" } } |