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是由phelan.vendeville开发的Chrome扩展程序,该扩展的主要功能是“This extension shows your top 10 most visited websites for the past week, month, or year.”。

扩展截图

screenshot
screenshot

下载Top Visited Websites扩展crx文件

下载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.                    

扩展基本信息

名称 Top Visited Websites Top Visited Websites
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"
    ]
}