Lightcord

Helper extension for Lightcord

Lightcord là gì?

Lightcord là một tiện ích mở rộng Chrome được phát triển bởi https://snazzah.com, và tính năng chính của nó là "Helper extension for Lightcord".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lightcord

Tải xuống các tệp mở rộng Lightcord dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lightcord Lightcord
ID cakpfmgjggododapaoacpmmfihpmhcae
URL Chính Thức https://chromewebstore.google.com/detail/lightcord/cakpfmgjggododapaoacpmmfihpmhcae
Mô tả Helper extension for Lightcord
Kích Thước Tệp 57.99 KB
Số Lần Cài Đặt 204
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-11-29
Ngày Phát Hành 2020-11-29
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://snazzah.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://lightcord.js.org
URL Trang Trợ Giúp https://github.com/Snazzah/LightcordExtension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}