Top Visited Websites

This extension shows your top 10 most visited websites for the past week, month, or year.

O que é Top Visited Websites?

Top Visited Websites é uma extensão do Chrome desenvolvida por phelan.vendeville, e sua principal característica é "This extension shows your top 10 most visited websites for the past week, month, or year.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Top Visited Websites

Baixe arquivos de extensão Top Visited Websites 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

                        This project creates a chrome extension that uses the Chrome History API to pull out websites you've visited during a time-slice. It groups these websites together by domain, and displays the count numbers in tabular and graph format.

The main point of this project is to learn something while making a useful thing. Thanks to Ethan for the codereviews and Jon for the sweet icon.                    

Informações Básicas da Extensão

Nome Top Visited Websites Top Visited Websites
ID biiandepjhmnifgimjpoadmmmfblgogb
URL Oficial https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb
Descrição This extension shows your top 10 most visited websites for the past week, month, or year.
Tamanho do Arquivo 108 KB
Contagem de Instalações 153
Versão Atual 1.0
Última Atualização 2015-08-01
Data de Publicação 2015-08-01
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor phelan.vendeville
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Top Visited Websites",
    "description": "This extension shows your top 10 most visited websites for the past week, month, or year.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "history"
    ]
}