TeslaFi Tesla Token Generator
Used to generate a Tesla API Token for TeslaFi.com.
Vad är TeslaFi Tesla Token Generator?
TeslaFi Tesla Token Generator är en Chrome-tillägg utvecklad av https://teslafi.com, och dess huvudfunktion är "Used to generate a Tesla API Token for TeslaFi.com.".
Tilläggsskärmbilder
Ladda ner TeslaFi Tesla Token Generator-förlängningens CRX-fil
Ladda ner TeslaFi Tesla Token Generator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
The TeslaFi Tesla API Token Generator provides an easy to way to link your Tesla.com account to TeslaFi by opening a Tesla.com tab allowing you to enter your Tesla.com credentials directly on Tesla's website. Grundläggande Information om Tillägg
| Namn | |
| ID | adnheflgkdelinknpflldgdapjpoampc |
| Officiell webbadress | https://chromewebstore.google.com/detail/teslafi-tesla-token-gener/adnheflgkdelinknpflldgdapjpoampc |
| Beskrivning | Used to generate a Tesla API Token for TeslaFi.com. |
| Filstorlek | 19.62 KB |
| Antal Installationer | 3,957 |
| Aktuell Version | 2.1.0 |
| Senast Uppdaterad | 2021-11-25 |
| Publiceringsdatum | 2021-11-23 |
| Utvecklare | https://teslafi.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://www.teslafi.com/privacy.php |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TeslaFi Tesla Token Generator",
"short_name": "TeslaFi",
"version": "2.1.0",
"description": "Used to generate a Tesla API Token for TeslaFi.com.",
"icons": {
"128": "assets\/images\/128.png"
},
"content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
"permissions": [
"webRequest",
"webRequestBlocking",
"https:\/\/auth.tesla.com\/",
"https:\/\/auth.tesla.cn\/*"
],
"background": {
"scripts": [
"\/config.js",
"\/assets\/js\/background.js"
]
},
"browser_action": {
"default_icon": {
"128": "assets\/images\/128.png"
},
"default_title": "TeslaFi Web App",
"browser_style": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.teslafi.com\/*"
],
"js": [
"\/config.js",
"\/assets\/js\/content-script.js"
],
"css": [
"\/assets\/css\/content-script.css"
]
}
]
} | |