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…
什么是LeetChat for LeetCode?
LeetChat for LeetCode是由LeetChat Group开发的Chrome扩展程序,该扩展的主要功能是“For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…”。
扩展截图
下载LeetChat for LeetCode扩展crx文件
下载LeetChat for LeetCode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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!                     扩展基本信息
| 名称 |  | 
| ID | mddjpgjooihjalafegejfngkldpjkjje | 
| 官方URL | https://chromewebstore.google.com/detail/leetchat-for-leetcode/mddjpgjooihjalafegejfngkldpjkjje | 
| 简介 | For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up… | 
| 文件大小 | 53.98 KB | 
| 安装次数 | 21 | 
| 当前版本 | 1.1 | 
| 更新时间 | 2019-04-19 | 
| 上架时间 | 2019-04-13 | 
| 开发者 | LeetChat Group | 
| 付费类型 | free | 
| 支持的语言 | 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"
    ]
} | |