Access Token Generator for Tesla

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

什么是Access Token Generator for Tesla?

Access Token Generator for Tesla是由Dr. McKay开发的Chrome扩展程序,该扩展的主要功能是“Enables generating access tokens for tesla.com for use with third-party services”。

扩展截图

screenshot

下载Access Token Generator for Tesla扩展crx文件

下载Access Token Generator for Tesla扩展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.                    

扩展基本信息

名称 Access Token Generator for Tesla Access Token Generator for Tesla
ID djpjpanpjaimfjalnpkppkjiedmgpjpe
官方URL https://chromewebstore.google.com/detail/access-token-generator-fo/djpjpanpjaimfjalnpkppkjiedmgpjpe
简介 Enables generating access tokens for tesla.com for use with third-party services
文件大小 17.74 KB
安装次数 1,362
当前版本 2.0.3
更新时间 2023-10-12
上架时间 2023-10-12
开发者 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": "Access Token Generator for Tesla",
    "version": "2.0.3",
    "description": "Enables generating access tokens for tesla.com for use with third-party services",
    "icons": {
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/auth.tesla.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "48": "img\/48.png",
            "128": "img\/128.png"
        }
    }
}