Tesla Access Token Generator

Enables generating access tokens for tesla.com for use with third-party services

Что такое Tesla Access Token Generator?

Tesla Access Token Generator - это расширение Chrome, разработанное Dr. McKay, и его основная функция - "Enables generating access tokens for tesla.com for use with third-party services".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Tesla Access Token Generator

Скачайте файлы расширений Tesla Access Token Generator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        There exist several third-party services which interact with Tesla vehicles and energy products, but the only way those services can communicate with your Tesla products is by using access tokens. This extension enables you to get those necessary access tokens.

Source code is available on GitHub: https://github.com/DoctorMcKay/chromium-tesla-token-generator

All communication is directly to tesla.com. The only origin declared in the extension's manifest is auth.tesla.com, so it is not possible for the extension to send your credentials to another external server.

Why is the extension requesting access to read my browsing history? Because of the way that Tesla's authentication server works, it's necessary to watch your browsing traffic to detect when the login has completed. This particular login request is the only thing that the extension is watching for. No data is ever sent to any external server except for auth.tesla.com.                    

Основная информация о расширении

Название Tesla Access Token Generator Tesla Access Token Generator
ID kokkedfblmfbngojkeaepekpidghjgag
Официальный URL https://chrome.google.com/webstore/detail/tesla-access-token-genera/kokkedfblmfbngojkeaepekpidghjgag
Описание Enables generating access tokens for tesla.com for use with third-party services
Размер файла 30.7 KB
Количество установок 3,375
Текущая Версия 2.0.1
Последнее Обновление 2022-08-23
Дата публикации 2021-09-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Dr. McKay
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/DoctorMcKay/chromium-tesla-token-generator
URL страницы помощи https://github.com/DoctorMcKay/chromium-tesla-token-generator/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tesla Access Token Generator",
    "version": "2.0.1",
    "description": "Enables generating access tokens for tesla.com for use with third-party services",
    "icons": {
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/auth.tesla.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "48": "img\/48.png",
            "128": "img\/128.png"
        }
    }
}