Lightcord
Helper extension for Lightcord
什麼是Lightcord?
Lightcord是由https://snazzah.com開發的Chrome擴展程式,該擴展的主要功能是“Helper extension for Lightcord”。
擴展截圖
下載Lightcord擴展crx文件
下載Lightcord擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | cakpfmgjggododapaoacpmmfihpmhcae |
| 官方網址 | 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"
} | |