ReplDM
Adds direct messaging functionality to replit.com
Wat is ReplDM?
ReplDM is een Chrome-extensie ontwikkeld door Marcus Weinberger, en de belangrijkste functie is "Adds direct messaging functionality to replit.com".
Extensie Screenshots
Download het CRX-bestand van de extensie ReplDM
Download ReplDM-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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). Basisinformatie over de Extensie
| Naam | |
| ID | keafnbglbpeinfldadjibfibkaklhceg |
| Officiële URL | https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg |
| Beschrijving | Adds direct messaging functionality to replit.com |
| Bestandsgrootte | 724 KB |
| Aantal Installaties | 37 |
| Huidige Versie | 0.7.4 |
| Laatst Bijgewerkt | 2021-03-25 |
| Publicatiedatum | 2021-03-16 |
| Beoordeling | 4.67/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | Marcus Weinberger |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://repl.it/@rafrafraf/chrome-extension |
| Help Pagina-URL | https://repl.it/@rafrafraf/chrome-extension |
| Ondersteunde Talen | 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"
}
} | |