FPS Control

Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.

什么是FPS Control?

FPS Control是由https://www.pixelscommander.com开发的Chrome扩展程序,该扩展的主要功能是“Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.”。

扩展截图

screenshot

下载FPS Control扩展crx文件

下载FPS Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Dev / QA browser extension which allows to limit FPS and emulate FPS drops using Request Animation Frame. Useful to test your application for low frames scenario or dropped frames. Select parameters from drop downs and they are applied instantly.                    

扩展基本信息

名称 FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
官方URL https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
简介 Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
文件大小 723 KB
安装次数 5,000
当前版本 0.0.1
更新时间 2019-10-23
上架时间 2019-10-23
评分 2.67/5 共27次评分
开发者 https://www.pixelscommander.com
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.",
    "version": "0.0.1",
    "name": "FPS Control",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}