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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FPS Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } |