FPS extension

This extension shows a current FPS(frames per second) on a web page.

FPS extensionคืออะไร?

FPS extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yuri Artiukh และคุณลักษณะหลักของมันคือ "This extension shows a current FPS(frames per second) on a web page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FPS extension

ดาวน์โหลดไฟล์ส่วนขยาย FPS extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is extension for debugging website perfomance. It's just easier to turn on than the developer tools one. inspired by similar extension which is no longer available in Chrome Store.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FPS extension FPS extension
ID gdkkmimldhefhmmmlalioafomdlahcog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fps-extension/gdkkmimldhefhmmmlalioafomdlahcog
คำอธิบาย This extension shows a current FPS(frames per second) on a web page.
ขนาดไฟล์ 12.69 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2017-09-07
วันที่เผยแพร่ 2017-09-07
คะแนน 3.29/5 รวมทั้งหมด 85 คะแนน
ผู้พัฒนา Yuri Artiukh
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FPS extension",
    "description": "This extension shows a current FPS(frames per second) on a web page.",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "fps.js"
            ],
            "css": [
                "fps.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}