SWIFT Benchmark
Free extension for testing computation speed. Benchmark
什么是SWIFT Benchmark?
SWIFT Benchmark是由SWIFTRELAY开发的Chrome扩展程序,该扩展的主要功能是“Free extension for testing computation speed. Benchmark”。
扩展截图
下载SWIFT Benchmark扩展crx文件
下载SWIFT Benchmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple tool to check your computer's processing power dedicated to extensions 扩展基本信息
| 名称 | |
| ID | lilmbjmnpgiaehkldplmoeibpcgimind |
| 官方URL | https://chrome.google.com/webstore/detail/swift-benchmark/lilmbjmnpgiaehkldplmoeibpcgimind |
| 简介 | Free extension for testing computation speed. Benchmark |
| 文件大小 | 67.68 KB |
| 安装次数 | 30 |
| 当前版本 | 1.4 |
| 更新时间 | 2022-03-26 |
| 上架时间 | 2021-10-11 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | SWIFTRELAY |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://swiftrelay.io/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SWIFT Benchmark",
"manifest_version": 3,
"short_name": "swift_benchmark",
"version": "1.4",
"author": "Premiere IT",
"description": "Free extension for testing computation speed. Benchmark",
"icons": {
"16": "icons\/scale.png",
"32": "icons\/scale.png",
"48": "icons\/scale.png",
"64": "icons\/scale.png",
"128": "icons\/scale.png"
},
"permissions": [
"scripting",
"background",
"alarms"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/roborelay.io\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "...",
"default_icon": "icons\/scale.png",
"default_popup": "index.html"
},
"host_permissions": [
"*:\/\/roborelay.io\/*"
]
} | |