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은(는) https://pradeep-selva.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}