Top Visited Websites

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

Co je Top Visited Websites?

Top Visited Websites je rozšíření Chrome vyvinuté phelan.vendeville, a jeho hlavní funkcí je „This extension shows your top 10 most visited websites for the past week, month, or year.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Top Visited Websites

Stáhněte si soubory rozšíření Top Visited Websites ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Top Visited Websites Top Visited Websites
ID biiandepjhmnifgimjpoadmmmfblgogb
Oficiální URL https://chrome.google.com/webstore/detail/top-visited-websites/biiandepjhmnifgimjpoadmmmfblgogb
Popis This extension shows your top 10 most visited websites for the past week, month, or year.
Velikost souboru 108 KB
Počet instalací 153
Aktuální Verze 1.0
Poslední Aktualizace 2015-08-01
Datum Vydání 2015-08-01
Hodnocení 4.00/5 Celkem 2 Hodnocení
Vývojář phelan.vendeville
Typ Platby free
Podporované Jazyky 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"
    ]
}