Timing71

Timing71 browser extension

Timing71란 무엇입니까?

Timing71은(는) https://timing71.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Timing71 browser extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Timing71 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
            ]
        }
    ]
}