Repl.it
Run code across the web on repl.it
Qu'est-ce que Repl.it ?
Repl.it est une extension Chrome développée par Samarth Jajoo, et sa fonction principale est "Run code across the web on repl.it".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Repl.it
Téléchargez les fichiers d'extension Repl.it au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 👨💻
Informations de Base sur l'Extension
Nom | |
ID | kihnihckibjknmebghcjpmemaginnipl |
URL Officiel | https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl |
Description | Run code across the web on repl.it |
Taille du Fichier | 12.2 KB |
Nombre d'Installations | 4,669 |
Version Actuelle | 0.9 |
Dernière Mise à Jour | 2019-12-15 |
Date de Publication | 2019-12-10 |
Évaluation | 4.17/5 Total 6 Évaluations |
Développeur | Samarth Jajoo |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jajoosam/repl.it-chrome |
Langues Prises en Charge | 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" ] } |