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 |
| 官方網址 | 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"
}
} | |