Page load time
Displays page load time in the toolbar
ما هو Page load time؟
Page load time هو إضافة Chrome تم تطويرها بواسطة Alexander Vykhodtsev، والميزة الرئيسية لها هي "Displays page load time in the toolbar".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Page load time
قم بتنزيل ملفات الامتداد Page load time بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension measures page load time and displays it in the toolbar. Navigation Timing API is used for precise measurement. Source code available at https://github.com/alex-vv/page-load-time
معلومات أساسية عن التمديد
الاسم | Page load time |
ID | fploionmjgeclbkemipmkogoaohcdbig |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig |
الوصف | Displays page load time in the toolbar |
حجم الملف | 17.38 KB |
عدد التثبيتات | 171,349 |
النسخة الحالية | 3.2.1 |
آخر تحديث | 2021-02-09 |
تاريخ النشر | 2020-11-06 |
تقييم | 4.54/5 مجموع تقييمات 252 |
المطور | Alexander Vykhodtsev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/alex-vv/page-load-time |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Page load time", "version": "3.2.1", "manifest_version": 2, "description": "Displays page load time in the toolbar", "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ], "persistent": false }, "browser_action": { "default_icon": "stopwatch22.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "browser-polyfill.min.js", "performance.js" ] } ], "permissions": [ "activeTab", "storage" ], "icons": { "16": "stopwatch16.png", "48": "stopwatch48.png", "128": "stopwatch128.png" } } |