Lightcord
Helper extension for Lightcord
Apa itu Lightcord?
Lightcord adalah ekstensi Chrome yang dikembangkan oleh https://snazzah.com, dan fitur utamanya adalah "Helper extension for Lightcord".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Lightcord
Unduh file ekstensi Lightcord dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Lightcord |
ID | cakpfmgjggododapaoacpmmfihpmhcae |
URL Resmi | https://chromewebstore.google.com/detail/lightcord/cakpfmgjggododapaoacpmmfihpmhcae |
Deskripsi | Helper extension for Lightcord |
Ukuran File | 57.99 KB |
Jumlah Instalasi | 204 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2020-11-29 |
Tanggal Publikasi | 2020-11-29 |
Penilaian | 2.00/5 Total 1 Penilaian |
Pengembang | https://snazzah.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://lightcord.js.org |
URL Halaman Bantuan | https://github.com/Snazzah/LightcordExtension/issues |
Bahasa yang Didukung | 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" } |