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'est-ce que LeetChat for LeetCode ?

LeetChat for LeetCode est une extension Chrome développée par LeetChat Group, et sa fonction principale est "For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension LeetChat for LeetCode

Téléchargez les fichiers d'extension LeetChat for LeetCode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom LeetChat for LeetCode LeetChat for LeetCode
ID mddjpgjooihjalafegejfngkldpjkjje
URL Officiel https://chromewebstore.google.com/detail/leetchat-for-leetcode/mddjpgjooihjalafegejfngkldpjkjje
Description For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…
Taille du Fichier 53.98 KB
Nombre d'Installations 21
Version Actuelle 1.1
Dernière Mise à Jour 2019-04-19
Date de Publication 2019-04-13
Développeur LeetChat Group
Type de Paiement free
Langues Prises en Charge 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"
    ]
}