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…

Vad är LeetChat for LeetCode?

LeetChat for LeetCode är en Chrome-tillägg utvecklad av LeetChat Group, och dess huvudfunktion är "For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner LeetChat for LeetCode-förlängningens CRX-fil

Ladda ner LeetChat for LeetCode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn LeetChat for LeetCode LeetChat for LeetCode
ID mddjpgjooihjalafegejfngkldpjkjje
Officiell webbadress https://chromewebstore.google.com/detail/leetchat-for-leetcode/mddjpgjooihjalafegejfngkldpjkjje
Beskrivning For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…
Filstorlek 53.98 KB
Antal Installationer 21
Aktuell Version 1.1
Senast Uppdaterad 2019-04-19
Publiceringsdatum 2019-04-13
Utvecklare LeetChat Group
Betalningssätt free
Stödda Språk 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"
    ]
}