Gleam AutoTune
Auto complete tasks on Gleam
Was ist Gleam AutoTune?
Gleam AutoTune ist eine Chrome-Erweiterung, die von NAN Std. entwickelt wurde, und ihr Hauptmerkmal ist "Auto complete tasks on Gleam".
Erweiterungsscreenshots
Gleam AutoTune-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gleam AutoTune-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Auto complete tasks on Gleam (Like, share, follow, join Telegram, Twitter, Discord, Facebook, Youtube, Medium)
+ Community airdrop
+ Whitelist registration Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jncdhcpfdddmimpkeicfocmdipgaejfg |
| Offizielle URL | https://chromewebstore.google.com/detail/gleam-autotune/jncdhcpfdddmimpkeicfocmdipgaejfg |
| Beschreibung | Auto complete tasks on Gleam |
| Dateigröße | 240 KB |
| Installationsanzahl | 558 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2022-07-23 |
| Veröffentlichungsdatum | 2022-04-25 |
| Bewertung | 2.50/5 Insgesamt 6 Bewertungen |
| Entwickler | NAN Std. |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gleam AutoTune",
"version": "1.0",
"manifest_version": 3,
"description": "Auto complete tasks on Gleam",
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png"
},
"action": {
"default_icon": {
"19": "images\/icon.png",
"38": "images\/icon.png"
},
"default_title": "Gleam AutoTune",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/us-central1-gleam-autotune.cloudfunctions.net\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/gleam.io\/*",
"https:\/\/twitter.com\/*",
"https:\/\/web.telegram.org\/*",
"https:\/\/www.facebook.com\/*",
"https:\/\/www.youtube.com\/*",
"https:\/\/discord.com\/*",
"https:\/\/oauth.telegram.org\/*",
"https:\/\/medium.com\/*"
],
"js": [
"scripts\/content.js",
"scripts\/lib\/bootstrap.min.js"
],
"css": [
"styles\/font.css",
"styles\/main.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"scripts\/resources\/gleam.js",
"styles\/gleam.css"
],
"matches": [
"https:\/\/gleam.io\/*"
],
"extension_ids": []
}
]
} | |