ReplDM
Adds direct messaging functionality to replit.com
Apa itu ReplDM?
ReplDM adalah ekstensi Chrome yang dikembangkan oleh Marcus Weinberger, dan fitur utamanya adalah "Adds direct messaging functionality to replit.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ReplDM
Unduh file ekstensi ReplDM dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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).
Informasi Dasar Ekstensi
Nama | ReplDM |
ID | keafnbglbpeinfldadjibfibkaklhceg |
URL Resmi | https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg |
Deskripsi | Adds direct messaging functionality to replit.com |
Ukuran File | 724 KB |
Jumlah Instalasi | 37 |
Versi Saat Ini | 0.7.4 |
Terakhir Diperbarui | 2021-03-25 |
Tanggal Publikasi | 2021-03-16 |
Penilaian | 4.67/5 Total 9 Penilaian |
Pengembang | Marcus Weinberger |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://repl.it/@rafrafraf/chrome-extension |
URL Halaman Bantuan | https://repl.it/@rafrafraf/chrome-extension |
Bahasa yang Didukung | 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" } } |