Repl.it
Run code across the web on repl.it
Was ist Repl.it?
Repl.it ist eine Chrome-Erweiterung, die von Samarth Jajoo entwickelt wurde, und ihr Hauptmerkmal ist "Run code across the web on repl.it".
Erweiterungsscreenshots
Repl.it-Erweiterungs-CRX-Datei herunterladen
Laden Sie Repl.it-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 👨💻 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kihnihckibjknmebghcjpmemaginnipl |
| Offizielle URL | https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl |
| Beschreibung | Run code across the web on repl.it |
| Dateigröße | 12.2 KB |
| Installationsanzahl | 4,669 |
| Aktuelle Version | 0.9 |
| Letztes Update | 2019-12-15 |
| Veröffentlichungsdatum | 2019-12-10 |
| Bewertung | 4.17/5 Insgesamt 6 Bewertungen |
| Entwickler | Samarth Jajoo |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/jajoosam/repl.it-chrome |
| Unterstützte Sprachen | 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"
]
} | |