FPS extension

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

FPS extension là gì?

FPS extension là một tiện ích mở rộng Chrome được phát triển bởi Yuri Artiukh, và tính năng chính của nó là "This extension shows a current FPS(frames per second) on a web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FPS extension

Tải xuống các tệp mở rộng FPS extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FPS extension FPS extension
ID gdkkmimldhefhmmmlalioafomdlahcog
URL Chính Thức https://chromewebstore.google.com/detail/fps-extension/gdkkmimldhefhmmmlalioafomdlahcog
Mô tả This extension shows a current FPS(frames per second) on a web page.
Kích Thước Tệp 12.69 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-09-07
Ngày Phát Hành 2017-09-07
Đánh Giá 3.29/5 Tổng số 85 Đánh Giá
Nhà Phát Triển Yuri Artiukh
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}