speedRuler
网站前端性能检测
speedRulerとは何ですか?
speedRulerはkyriejnliuによって開発されたChromeの拡張機能で、その主な機能は「网站前端性能检测」です。
拡張機能のスクリーンショット
speedRuler拡張機能のCRXファイルをダウンロード
speedRuler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
speedRuler是一款网页性能检测插件,借助于浏览器的 Performance API,可在控制台打印出当前页面的性能信息。
当然,speedRuler 的源代码在 Github 上开源:https://github.com/KKKyrie/speedRuler
有任何疑问可以发送邮件到 [email protected],我会在第一时间解答你的疑惑 拡張機能の基本情報
| 名前 | |
| ID | mjkgbkgimmggfjgangnnidacafgojfhm |
| 公式URL | https://chromewebstore.google.com/detail/speedruler/mjkgbkgimmggfjgangnnidacafgojfhm |
| 説明 | 网站前端性能检测 |
| ファイルサイズ | 15.4 KB |
| インストール数 | 60 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2019-04-09 |
| 公開日 | 2019-04-09 |
| 開発者 | kyriejnliu |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/KKKyrie/speedRuler |
| 対応言語 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "speedRuler",
"version": "1.0",
"description": "\u7f51\u7ad9\u524d\u7aef\u6027\u80fd\u68c0\u6d4b",
"icons": {
"19": "images\/logo.png",
"38": "images\/logo.png",
"128": "images\/logo128.png"
},
"browser_action": {
"default_title": "\u65b9\u4fbf\u5f00\u53d1\u4eba\u5458\u5bf9\u7f51\u9875\u7684\u6027\u80fd\u8fdb\u884c\u68c0\u6d4b",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.com\/*",
"*:\/\/*.cn\/*",
"*:\/\/*.im\/*"
],
"js": [
".\/dist\/content_scripts\/ruler.min.js"
]
}
],
"background": {
"scripts": []
}
} | |