Date Highlighter

Highlights dates in the current tab.

O que é Date Highlighter?

Date Highlighter é uma extensão do Chrome desenvolvida por Atalia, e sua principal característica é "Highlights dates in the current tab.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Date Highlighter

Baixe arquivos de extensão Date Highlighter 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

                        The extension will search for dates on the current web page and highlight them. Simply click on the blue highlighter icon and look for the highlighted text. This is useful for sites like coding blogs, where older content may become irrelevant.
This is an open source project, the code is available on https://github.com/amomsen/datehighlighter                    

Informações Básicas da Extensão

Nome Date Highlighter Date Highlighter
ID efeboclghfaoicleloajmcaeegbkkjkh
URL Oficial https://chrome.google.com/webstore/detail/date-highlighter/efeboclghfaoicleloajmcaeegbkkjkh
Descrição Highlights dates in the current tab.
Tamanho do Arquivo 169 KB
Contagem de Instalações 56
Versão Atual 1.0.3
Última Atualização 2016-09-05
Data de Publicação 2016-09-05
Classificação 3.33/5 Total de 3 Avaliações
Desenvolvedor Atalia
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Date Highlighter",
    "short_name": "Date Highlighter",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "notifications",
        "activeTab"
    ],
    "description": "Highlights dates in the current tab.",
    "icons": {
        "16": "16.png",
        "24": "24.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Highlight dates",
        "default_icon": "16.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "48.png"
    ]
}