FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Τι είναι το FPS Control;
Το FPS Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.pixelscommander.com, και η κύρια λειτουργία του είναι "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης FPS Control
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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'" } |