Lightcord
Helper extension for Lightcord
Lightcord란 무엇입니까?
Lightcord은(는) https://snazzah.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helper extension for Lightcord"입니다.
확장 프로그램 스크린샷
Lightcord 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Lightcord is a webapp for Discord bots, allowing you to interact with Discord servers as the bot. This extension helps correct requests to Discord from Lightcord, allowing it to work properly.
확장 프로그램 기본 정보
이름 | Lightcord |
ID | cakpfmgjggododapaoacpmmfihpmhcae |
공식 URL | https://chromewebstore.google.com/detail/lightcord/cakpfmgjggododapaoacpmmfihpmhcae |
설명 | Helper extension for Lightcord |
파일 크기 | 57.99 KB |
설치 횟수 | 204 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2020-11-29 |
출시 날짜 | 2020-11-29 |
평점 | 2.00/5 총 1 개의 평점 |
개발자 | https://snazzah.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://lightcord.js.org |
도움말 페이지 URL | https://github.com/Snazzah/LightcordExtension/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lightcord", "version": "1.0.0", "description": "Helper extension for Lightcord", "author": "Snazzah", "icons": { "16": "icons\/16.png", "24": "icons\/24.png", "48": "icons\/48.png", "64": "icons\/64.png", "96": "icons\/96.png", "128": "icons\/128.png", "192": "icons\/192.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.apps.codespaces.githubusercontent.com\/*", "https:\/\/lightcord.js.org\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "55.0" } }, "minimum_chrome_version": "65.0.0", "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/*.apps.codespaces.githubusercontent.com\/*", "https:\/\/lightcord.js.org\/*", "https:\/\/discord.com\/api\/v*", "https:\/\/discordapp.com\/api\/v*" ], "homepage_url": "https:\/\/lightcord.js.org", "short_name": "Lightcord" } |