Top Visited Websites
This extension shows your top 10 most visited websites for the past week, month, or year.
Cos'è Top Visited Websites?
Top Visited Websites è un'estensione di Chrome sviluppata da phelan.vendeville, e la sua funzione principale è "This extension shows your top 10 most visited websites for the past week, month, or year.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Top Visited Websites
Scarica i file di estensione Top Visited Websites in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | biiandepjhmnifgimjpoadmmmfblgogb |
URL Ufficiale | https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb |
Descrizione | This extension shows your top 10 most visited websites for the past week, month, or year. |
Dimensione del File | 108 KB |
Conteggio Installazioni | 153 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-08-01 |
Data di Pubblicazione | 2015-08-01 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | phelan.vendeville |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |