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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
    ]
}