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.”。
擴展截圖
下載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 |
ID | jolcefamincmnepgphdiojccmfaflane |
官方網址 | 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'" } |