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 |
| Eメール | [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"
}
} | |