History Janitor
A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it
Co je History Janitor?
History Janitor je rozšíření Chrome vyvinuté Nex, a jeho hlavní funkcí je „A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření History Janitor
Stáhněte si soubory rozšíření History Janitor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 !
Základní Informace o Rozšíření
Název | |
ID | kkaakfpimddpndjdgopjbloioapgmlpa |
Oficiální URL | https://chrome.google.com/webstore/detail/history-janitor/kkaakfpimddpndjdgopjbloioapgmlpa |
Popis | A browser extension that automatically check every minutes if a URL in history contains a specified keywords and then delete it |
Velikost souboru | 174 KB |
Počet instalací | 111 |
Aktuální Verze | 2.0 |
Poslední Aktualizace | 2014-02-03 |
Datum Vydání | 2014-02-03 |
Hodnocení | 3.00/5 Celkem 4 Hodnocení |
Vývojář | Nex |
Typ Platby | free |
Podporované Jazyky | 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" } } |