LeetChat for LeetCode

For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…

Co to jest LeetChat for LeetCode?

LeetChat for LeetCode to rozszerzenie Chrome opracowane przez LeetChat Group, a jego główną funkcją jest „For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia LeetChat for LeetCode

Pobierz pliki rozszerzeń LeetChat for LeetCode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        For people who are browsing the same online programming website  (LeetCode), this is the best real-time chatting tool to level up your coding skills by inspiring various ideas from discussion while having fun for coding!                    

Podstawowe informacje o rozszerzeniu

Nazwa LeetChat for LeetCode LeetChat for LeetCode
ID mddjpgjooihjalafegejfngkldpjkjje
Oficjalny URL https://chromewebstore.google.com/detail/leetchat-for-leetcode/mddjpgjooihjalafegejfngkldpjkjje
Opis For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…
Rozmiar pliku 53.98 KB
Liczba instalacji 21
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2019-04-19
Data Publikacji 2019-04-13
Deweloper LeetChat Group
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetChat for LeetCode",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "LeetChat",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/unpkg.com\/axios\/dist\/axios.min.js; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab"
    ]
}