Repl.it
Run code across the web on repl.it
Repl.itとは何ですか?
Repl.itはSamarth Jajooによって開発されたChromeの拡張機能で、その主な機能は「Run code across the web on repl.it」です。
拡張機能のスクリーンショット
Repl.it拡張機能のCRXファイルをダウンロード
Repl.it拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Repl.it chrome extension lets you run code in any language, on the web itself!
Prompts are added in GitHub Repos + Gists, and the NPM Registry, but you can run any code you find by selecting it and hitting `Try on repl.it` in the menu 👨💻 拡張機能の基本情報
| 名前 | |
| ID | kihnihckibjknmebghcjpmemaginnipl |
| 公式URL | https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl |
| 説明 | Run code across the web on repl.it |
| ファイルサイズ | 12.2 KB |
| インストール数 | 4,669 |
| 現在のバージョン | 0.9 |
| 最終更新日 | 2019-12-15 |
| 公開日 | 2019-12-10 |
| 評価 | 4.17/5 合計 6 レビュー |
| 開発者 | Samarth Jajoo |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/jajoosam/repl.it-chrome |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Repl.it",
"version": "0.9",
"description": "Run code across the web on repl.it",
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"js": [
"index.js"
],
"matches": [
"https:\/\/gist.github.com\/*\/*",
"https:\/\/www.npmjs.com\/package\/*",
"https:\/\/github.com\/*\/*"
]
}
],
"background": {
"scripts": [
"menu.js"
],
"persistent": false
},
"permissions": [
"contextMenus",
"tabs",
"activeTab",
"storage"
]
} | |