Layar Web Performance Budget
Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Layar Web Performance Budgetとは何ですか?
Layar Web Performance BudgetはRyan Nixon Salimによって開発されたChromeの拡張機能で、その主な機能は「Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)」です。
拡張機能のスクリーンショット
Layar Web Performance Budget拡張機能のCRXファイルをダウンロード
Layar Web Performance Budget拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Layar Performence budget is showing your website performance ( RUM Speed Index, DOMContentLoaded and TTFB) with budget capability. This extension will help you when develop website so you can improve your web speed. Happy tweaking!
拡張機能の基本情報
名前 | Layar Web Performance Budget |
ID | ekcelkelcighgiibhhibcpaofgadbgek |
公式URL | https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek |
説明 | Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte) |
ファイルサイズ | 33.16 KB |
インストール数 | 40 |
現在のバージョン | 1.1 |
最終更新日 | 2017-05-04 |
公開日 | 2017-05-03 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | Ryan Nixon Salim |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/drgx/layar-chrome-extention |
ヘルプページのURL | https://github.com/drgx/layar-chrome-extention/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Layar Web Performance Budget", "short_name": "Layar", "description": "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)", "version": "1.1", "browser_action": { "default_icon": "icon\/layar-black.png", "default_popup": "popup.html" }, "icons": { "16": "icon\/layar-black.png", "48": "icon\/layar-black.png", "128": "icon\/layar-black.png" }, "web_accessible_resources": [ "svg\/arrow.svg" ], "background": { "persistent": false, "scripts": [ "javascripts\/background.js" ] }, "content_scripts": [ { "css": [ "css\/style.css" ], "js": [ "javascripts\/rum-speedindex.js", "javascripts\/main.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "activeTab", "storage", "tabs" ] } |