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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } |