Top Visited Websites

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

Vad är Top Visited Websites?

Top Visited Websites är en Chrome-tillägg utvecklad av phelan.vendeville, och dess huvudfunktion är "This extension shows your top 10 most visited websites for the past week, month, or year.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Top Visited Websites-förlängningens CRX-fil

Ladda ner Top Visited Websites-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Top Visited Websites Top Visited Websites
ID biiandepjhmnifgimjpoadmmmfblgogb
Officiell webbadress https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb
Beskrivning This extension shows your top 10 most visited websites for the past week, month, or year.
Filstorlek 108 KB
Antal Installationer 153
Aktuell Version 1.0
Senast Uppdaterad 2015-08-01
Publiceringsdatum 2015-08-01
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare phelan.vendeville
Betalningssätt free
Stödda Språk 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"
    ]
}