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 - это расширение Chrome, разработанное LeetChat Group, и его основная функция - "For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…".
Снимки экрана расширения
Скачать файл CRX расширения LeetChat for LeetCode
Скачайте файлы расширений 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"
]
} | |