Top Visited Websites

This extension shows your top 10 most visited websites for the past week, month, or year.

Top Visited Websites là gì?

Top Visited Websites là một tiện ích mở rộng Chrome được phát triển bởi phelan.vendeville, và tính năng chính của nó là "This extension shows your top 10 most visited websites for the past week, month, or year.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Top Visited Websites

Tải xuống các tệp mở rộng Top Visited Websites dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Top Visited Websites Top Visited Websites
ID biiandepjhmnifgimjpoadmmmfblgogb
URL Chính Thức https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb
Mô tả This extension shows your top 10 most visited websites for the past week, month, or year.
Kích Thước Tệp 108 KB
Số Lần Cài Đặt 153
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-08-01
Ngày Phát Hành 2015-08-01
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển phelan.vendeville
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}