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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables generating access tokens for tesla.com for use with third-party services"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Access Token Generator for Tesla एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    }
}