Tesla Access Token Generator

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

Tesla Access Token Generator là gì?

Tesla Access Token Generator là một tiện ích mở rộng Chrome được phát triển bởi Dr. McKay, và tính năng chính của nó là "Enables generating access tokens for tesla.com for use with third-party services".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tesla Access Token Generator

Tải xuống các tệp mở rộng Tesla Access Token Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tesla Access Token Generator Tesla Access Token Generator
ID kokkedfblmfbngojkeaepekpidghjgag
URL Chính Thức https://chrome.google.com/webstore/detail/tesla-access-token-genera/kokkedfblmfbngojkeaepekpidghjgag
Mô tả Enables generating access tokens for tesla.com for use with third-party services
Kích Thước Tệp 30.7 KB
Số Lần Cài Đặt 3,375
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2022-08-23
Ngày Phát Hành 2021-09-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Dr. McKay
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DoctorMcKay/chromium-tesla-token-generator
URL Trang Trợ Giúp https://github.com/DoctorMcKay/chromium-tesla-token-generator/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}