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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}