ReplDM
Adds direct messaging functionality to replit.com
什么是ReplDM?
ReplDM是由Marcus Weinberger开发的Chrome扩展程序,该扩展的主要功能是“Adds direct messaging functionality to replit.com”。
扩展截图
下载ReplDM扩展crx文件
下载ReplDM扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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). 扩展基本信息
| 名称 | |
| ID | keafnbglbpeinfldadjibfibkaklhceg |
| 官方URL | https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg |
| 简介 | Adds direct messaging functionality to replit.com |
| 文件大小 | 724 KB |
| 安装次数 | 37 |
| 当前版本 | 0.7.4 |
| 更新时间 | 2021-03-25 |
| 上架时间 | 2021-03-16 |
| 评分 | 4.67/5 共9次评分 |
| 开发者 | Marcus Weinberger |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://repl.it/@rafrafraf/chrome-extension |
| 帮助页面URL | https://repl.it/@rafrafraf/chrome-extension |
| 支持的语言 | 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"
}
} | |