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
官方網址 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"
    ]
}