Timing71
Timing71 browser extension
Что такое Timing71?
Timing71 - это расширение Chrome, разработанное https://timing71.org, и его основная функция - "Timing71 browser extension".
Снимки экрана расширения
Скачать файл CRX расширения Timing71
Скачайте файлы расширений 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 |
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\/*" ] } ] } |