ReplDM
Adds direct messaging functionality to replit.com
Co to jest ReplDM?
ReplDM to rozszerzenie Chrome opracowane przez Marcus Weinberger, a jego główną funkcją jest „Adds direct messaging functionality to replit.com”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ReplDM
Pobierz pliki rozszerzeń ReplDM w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This modifies content on the website https://replit.com, adding in the capability for direct messaging. It includes a user-friendly interface, and requires you to sign in via replit on first install. Your auth token will be synced across browsers (provided sync is enabled). Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | keafnbglbpeinfldadjibfibkaklhceg |
| Oficjalny URL | https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg |
| Opis | Adds direct messaging functionality to replit.com |
| Rozmiar pliku | 724 KB |
| Liczba instalacji | 37 |
| Aktualna Wersja | 0.7.4 |
| Ostatnia Aktualizacja | 2021-03-25 |
| Data Publikacji | 2021-03-16 |
| Ocena | 4.67/5 Łącznie 9 Oceny |
| Deweloper | Marcus Weinberger |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://repl.it/@rafrafraf/chrome-extension |
| Adres URL Strony Pomocy | https://repl.it/@rafrafraf/chrome-extension |
| Obsługiwane Języki | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ReplDM",
"description": "Adds direct messaging functionality to replit.com",
"version": "0.7.4",
"manifest_version": 2,
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/repl.it\/*",
"*:\/\/replit.com\/*"
],
"js": [
".\/fontawesome.js",
".\/socket.io.js",
".\/jquery.min.js",
"marked.min.js",
".\/sanitize-html.js",
".\/foreground.js"
],
"css": [
".\/fontawesome.css",
".\/repldm-page.css"
]
}
],
"options_page": ".\/options.html",
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs",
"*:\/\/repl.it\/*",
"*:\/\/replit.com\/*"
],
"background": {
"page": "index.html"
}
} | |