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…
Hvad er LeetChat for LeetCode?
LeetChat for LeetCode er en Chrome-udvidelse udviklet af LeetChat Group, og dens hovedfunktion er "For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up…".
Udvidelsesskærmbilleder
Download LeetChat for LeetCode-udvidelses-CRX-fil
Download LeetChat for LeetCode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | mddjpgjooihjalafegejfngkldpjkjje |
| Officiel URL | https://chromewebstore.google.com/detail/leetchat-for-leetcode/mddjpgjooihjalafegejfngkldpjkjje |
| Beskrivelse | For people who are browsing the same online programming website (LeetCode), this is the best real-time chatting tool to level up… |
| Filstørrelse | 53.98 KB |
| Antal Installationer | 21 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2019-04-19 |
| Udgivelsesdato | 2019-04-13 |
| Udvikler | LeetChat Group |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |