History Janitor

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

Vad är History Janitor?

History Janitor är en Chrome-tillägg utvecklad av Nex, och dess huvudfunktion är "A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it".

Tilläggsskärmbilder

screenshot

Ladda ner History Janitor-förlängningens CRX-fil

Ladda ner History Janitor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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 !                    

Grundläggande Information om Tillägg

Namn History Janitor History Janitor
ID kkaakfpimddpndjdgopjbloioapgmlpa
Officiell webbadress https://chrome.google.com/webstore/detail/history-janitor/kkaakfpimddpndjdgopjbloioapgmlpa
Beskrivning A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it
Filstorlek 174 KB
Antal Installationer 111
Aktuell Version 2.0
Senast Uppdaterad 2014-02-03
Publiceringsdatum 2014-02-03
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare Nex
Betalningssätt free
Stödda Språk 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"
    }
}