Top Visited Websites
This extension shows your top 10 most visited websites for the past week, month, or year.
Qu'est-ce que Top Visited Websites ?
Top Visited Websites est une extension Chrome développée par phelan.vendeville, et sa fonction principale est "This extension shows your top 10 most visited websites for the past week, month, or year.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Top Visited Websites
Téléchargez les fichiers d'extension Top Visited Websites au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | biiandepjhmnifgimjpoadmmmfblgogb |
URL Officiel | https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb |
Description | This extension shows your top 10 most visited websites for the past week, month, or year. |
Taille du Fichier | 108 KB |
Nombre d'Installations | 153 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-08-01 |
Date de Publication | 2015-08-01 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | phelan.vendeville |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |