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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Top Visited Websites
قم بتنزيل ملفات الامتداد Top Visited Websites بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |