History Manager

Manage your history better

O que é History Manager?

History Manager é uma extensão do Chrome desenvolvida por XSpace, e sua principal característica é "Manage your history better".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão History Manager

Baixe arquivos de extensão History Manager 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

                        # Smart History
Smart History is a chrome extension about history management with pretty user interfaces. Besides basic operations, Smart History provides rich options to acquire a much more delicate searching and listing result.

# Features
- A popup window to show histories briefly by clicking the black feather icon.
- By clicking the "History" title on the popup window, there will be a main interface that can search, delete, hide and group local browser histories
- Search history records by both keyword and date
- Group local browser history records by domain name and hid some history records specified by the user to reduce
the redundancy of showing records significantly
- Highlight important websites where users executed “copy” operations
- Produced statistics about the hit rate and stay time of different websites with vivid charts                    

Informações Básicas da Extensão

Nome History Manager History Manager
ID ifekbbngjjcachfekcpeejphmkeckged
URL Oficial https://chromewebstore.google.com/detail/history-manager/ifekbbngjjcachfekcpeejphmkeckged
Descrição Manage your history better
Tamanho do Arquivo 648 KB
Contagem de Instalações 14,296
Versão Atual 1.0
Última Atualização 2018-03-29
Data de Publicação 2018-03-29
Classificação 3.13/5 Total de 39 Avaliações
Desenvolvedor XSpace
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "History Manager",
    "version": "1.0",
    "short_name": "History",
    "description": "Manage your history better",
    "permissions": [
        "tabs",
        "history",
        "chrome:\/\/favicon\/",
        "storage",
        "bookmarks"
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": "imgs\/icon.png"
    },
    "chrome_url_overrides": {
        "history": "html\/history.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/jquery-3.1.1.min.js",
                "js\/copy_detect.js"
            ]
        }
    ],
    "manifest_version": 2
}