ExtraChannels - Discord tool
Show extra channels
Что такое ExtraChannels - Discord tool?
ExtraChannels - Discord tool - это расширение Chrome, разработанное ismail kharrobi, и его основная функция - "Show extra channels".
Снимки экрана расширения
Скачать файл CRX расширения ExtraChannels - Discord tool
Скачайте файлы расширений ExtraChannels - Discord tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
a tool that makes you able to check for extra channels that exist in a server but of course, you can't access them unless you have permission to * In case of first install and discord tab already opend you must refresh discord page * click on extension icon to turn it ON * enter any server you will find extra icon above in tool bar on discord server/ channel
Основная информация о расширении
Название | ExtraChannels - Discord tool |
ID | ahheohmnbgdjaachcbogbdagoldaddlj |
Официальный URL | https://chromewebstore.google.com/detail/extrachannels-discord-too/ahheohmnbgdjaachcbogbdagoldaddlj |
Описание | Show extra channels |
Размер файла | 136 KB |
Количество установок | 23 |
Текущая Версия | 1.5.0 |
Последнее Обновление | 2023-08-17 |
Дата публикации | 2023-08-17 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | ismail kharrobi |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/ismail-kharrobi/DiscordHiddenChannels-chromeExtension |
URL страницы помощи | https://github.com/ismail-kharrobi/DiscordHiddenChannels-chromeExtension |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ExtraChannels - Discord tool", "description": "Show extra channels", "version": "1.5.0", "manifest_version": 3, "permissions": [ "scripting", "tabs", "activeTab", "storage", "webRequest" ], "host_permissions": [ "https:\/\/discord.com\/*" ], "minimum_chrome_version": "102", "author": "[email protected]", "web_accessible_resources": [ { "resources": [ "scripts\/assets\/tail.js" ], "matches": [ "*:\/\/discord.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "action": { "default_title": "HiddenChannels", "default_icon": "icons\/i128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/discord.com\/*" ] } ], "externally_connectable": { "matches": [ "*:\/\/discord.com\/*" ] }, "icons": { "16": "icons\/i16.png", "32": "icons\/i32.png", "48": "icons\/i48.png", "128": "icons\/i128.png" } } |