Alphagate X
Alphagate integrated with X, enhancing the overall user experience with advanced features and superior functionality.
Что такое Alphagate X?
Alphagate X - это расширение Chrome, разработанное alphagate, и его основная функция - "Alphagate integrated with X, enhancing the overall user experience with advanced features and superior functionality.".
Снимки экрана расширения
Скачать файл CRX расширения Alphagate X
Скачайте файлы расширений Alphagate X в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This tools helps X users have integrated Alphagate on their surfing experience. It displays Alphagate data such as account history, followers/followings and social links to assist users by providing safety and insights. Основная информация о расширении
| Название | |
| ID | niokainjnclnhaflagpmeobbnklokill |
| Официальный URL | https://chromewebstore.google.com/detail/alphagate-x/niokainjnclnhaflagpmeobbnklokill |
| Описание | Alphagate integrated with X, enhancing the overall user experience with advanced features and superior functionality. |
| Размер файла | 170 KB |
| Количество установок | 450 |
| Текущая Версия | 1.4.3 |
| Последнее Обновление | 2024-02-14 |
| Дата публикации | 2024-01-30 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | alphagate |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://alphagate.io |
| URL страницы помощи | https://docs.alphagate.io |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Alphagate X",
"description": "Alphagate integrated with X, enhancing the overall user experience with advanced features and superior functionality.",
"version": "1.4.3",
"action": {
"default_popup": "popup.html",
"default_title": "AlphagateX",
"default_icon": "icon.png"
},
"permissions": [
"tabs"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"host_permissions": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*",
"*:\/\/*.alphagate.io\/*"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*"
],
"js": [
"util.js",
"extra.js",
"modals_0.js",
"contentScript.js"
],
"run_at": "document_end",
"css": [
"contentScript.css"
]
}
]
} | |