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
Eメール [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"
        }
    }
}