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…

¿Qué es LeetChat for LeetCode?

LeetChat for LeetCode es una extensión de Chrome desarrollada por LeetChat Group, y su función principal es "For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión LeetChat for LeetCode

Descarga archivos de extensión LeetChat for LeetCode en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre LeetChat for LeetCode LeetChat for LeetCode
ID mddjpgjooihjalafegejfngkldpjkjje
URL Oficial https://chromewebstore.google.com/detail/leetchat-for-leetcode/mddjpgjooihjalafegejfngkldpjkjje
Descripción For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…
Tamaño del Archivo 53.98 KB
Cantidad de Instalaciones 21
Versión Actual 1.1
Última Actualización 2019-04-19
Fecha de Publicación 2019-04-13
Desarrollador LeetChat Group
Tipo de Pago free
Idiomas Soportados 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"
    ]
}