History Janitor

A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it

O que é History Janitor?

History Janitor é uma extensão do Chrome desenvolvida por Nex, e sua principal característica é "A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão History Janitor

Baixe arquivos de extensão History Janitor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 !                    

Informações Básicas da Extensão

Nome History Janitor History Janitor
ID kkaakfpimddpndjdgopjbloioapgmlpa
URL Oficial https://chrome.google.com/webstore/detail/history-janitor/kkaakfpimddpndjdgopjbloioapgmlpa
Descrição A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it
Tamanho do Arquivo 174 KB
Contagem de Instalações 111
Versão Atual 2.0
Última Atualização 2014-02-03
Data de Publicação 2014-02-03
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor Nex
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}