Lurk Discord

Just wanna lurk chats on discord without actually interacting, but you end up typing by mistake? Well, you dont need to look further

Что такое Lurk Discord?

Lurk Discord - это расширение Chrome, разработанное https://pradeep-selva.com, и его основная функция - "Just wanna lurk chats on discord without actually interacting, but you end up typing by mistake? Well, you dont need to look further".

Снимки экрана расширения

Скачать файл CRX расширения Lurk Discord

Скачайте файлы расширений Lurk Discord в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        So, you just wanna lurk chats on discord without actually interacting, but you end up typing by mistake, people find you out and you get labelled a lurker? Well, you don't need to look any further. Just install this extension, and switch to lurk mode with a single click to remove any possibility of typing. You can always switch back to normal mode when you like!

This is completely open sourced. Please check out/star the repo -
{*} Repo - https://github.com/Pradeep-selva/lurk-discord
{*} Issues - https://github.com/Pradeep-selva/lurk-discord/issues
{*} License - https://github.com/Pradeep-selva/lurk-discord/blob/master/LICENSE
{*} Changelog - https://github.com/Pradeep-selva/lurk-discord/blob/master/CHANGELOG.md                    

Основная информация о расширении

Название Lurk Discord Lurk Discord
ID gglgjglfjmpioljaefpchflfhknemdkp
Официальный URL https://chromewebstore.google.com/detail/lurk-discord/gglgjglfjmpioljaefpchflfhknemdkp
Описание Just wanna lurk chats on discord without actually interacting, but you end up typing by mistake? Well, you dont need to look further
Размер файла 41.66 KB
Количество установок 161
Текущая Версия 1.0.0
Последнее Обновление 2021-09-09
Дата публикации 2021-09-08
Рейтинг 3.00/5 Всего 1 оценок
Разработчик https://pradeep-selva.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Pradeep-selva/lurk-discord
URL страницы помощи https://github.com/Pradeep-selva/lurk-discord/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lurk Discord",
    "author": "Pradeep Selva",
    "description": "Just wanna lurk chats on discord without actually interacting, but you end up typing by mistake? Well, you dont need to look further",
    "version": "1.0.0",
    "icons": {
        "48": ".\/assets\/lurk-discord-logo.png"
    },
    "background": {
        "page": ".\/pages\/background.html"
    },
    "content_scripts": [
        {
            "js": [
                ".\/scripts\/content.js"
            ],
            "matches": [
                "https:\/\/discord.com\/channels\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/pages\/popup.html"
    },
    "permissions": [
        "tabs",
        "https:\/\/discord.com\/*"
    ],
    "web_accessible_resources": [
        "utils\/*",
        "scripts\/*"
    ]
}