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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة FPS Control

قم بتنزيل ملفات الامتداد FPS Control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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'"
}