Timing71

Timing71 browser extension

什麼是Timing71?

Timing71是由https://timing71.org開發的Chrome擴展程式,該擴展的主要功能是“Timing71 browser extension”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Timing71擴展crx文件

下載Timing71擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        View real-time live timing data and detailed analysis, from your web browser!

The Timing71 extension for Google Chrome brings the power of Timing71's real-time analysis and display of motorsport data to your browser. View live race feeds with Timing71's iconic and clear timing screen, plus gain strategic insights using its comprehensive suite of analysis tools.

Timing71 is a hobby project and a work in progress - new features are constantly being added and existing features improved.

For recent changes to this plugin see the changelog at https://github.com/timing71/chrome/releases                    

擴展基本資訊

名稱 Timing71 Timing71
ID pjdcehojcogjpilmeliklfddboeoogpd
官方網址 https://chromewebstore.google.com/detail/timing71/pjdcehojcogjpilmeliklfddboeoogpd
簡介 Timing71 browser extension
檔案大小 170 KB
安裝次數 4,583
目前版本 1.2.0
更新時間 2023-11-03
上架時間 2022-01-03
評分 3.88/5 共 8 次評分
開發者 https://timing71.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.timing71.org/
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Timing71",
    "description": "Timing71 browser extension",
    "version": "1.2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.timing71.org\/*",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "injector.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "flash.js"
            ],
            "css": [
                "timing71.css"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "host_permissions": [
        "https:\/\/*\/",
        "wss:\/\/*\/"
    ],
    "permissions": [
        "alarms",
        "declarativeNetRequest",
        "storage",
        "tabs"
    ],
    "action": {
        "default_title": "Timing71",
        "default_popup": "menu.html"
    },
    "icons": {
        "16": "logo_16.png",
        "32": "logo_32.png",
        "64": "logo_64.png",
        "128": "logo_128.png"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/*.timing71.org\/*",
            "http:\/\/localhost\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "logo_32.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "host.html",
                "host.js"
            ],
            "matches": [
                "https:\/\/*.timing71.org\/*",
                "http:\/\/localhost\/*"
            ]
        }
    ]
}