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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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" ] } |