Top Visited Websites
This extension shows your top 10 most visited websites for the past week, month, or year.
Τι είναι το Top Visited Websites;
Το Top Visited Websites είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον phelan.vendeville, και η κύρια λειτουργία του είναι "This extension shows your top 10 most visited websites for the past week, month, or year.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Top Visited Websites
Λήψη αρχείων επέκτασης Top Visited Websites σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | biiandepjhmnifgimjpoadmmmfblgogb |
Επίσημο URL | https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb |
Περιγραφή | This extension shows your top 10 most visited websites for the past week, month, or year. |
Μέγεθος Αρχείου | 108 KB |
Αριθμός Εγκαταστάσεων | 153 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2015-08-01 |
Ημερομηνία Δημοσίευσης | 2015-08-01 |
Αξιολόγηση | 4.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | phelan.vendeville |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |