Gleam AutoTune
Auto complete tasks on Gleam
Что такое Gleam AutoTune?
Gleam AutoTune - это расширение Chrome, разработанное NAN Std., и его основная функция - "Auto complete tasks on Gleam".
Снимки экрана расширения
Скачать файл CRX расширения Gleam AutoTune
Скачайте файлы расширений Gleam AutoTune в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Auto complete tasks on Gleam (Like, share, follow, join Telegram, Twitter, Discord, Facebook, Youtube, Medium)
+ Community airdrop
+ Whitelist registration Основная информация о расширении
| Название | |
| ID | jncdhcpfdddmimpkeicfocmdipgaejfg |
| Официальный URL | https://chromewebstore.google.com/detail/gleam-autotune/jncdhcpfdddmimpkeicfocmdipgaejfg |
| Описание | Auto complete tasks on Gleam |
| Размер файла | 240 KB |
| Количество установок | 558 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2022-07-23 |
| Дата публикации | 2022-04-25 |
| Рейтинг | 2.50/5 Всего 6 оценок |
| Разработчик | NAN Std. |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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": []
}
]
} | |