Repl.it
Run code across the web on repl.it
Hvad er Repl.it?
Repl.it er en Chrome-udvidelse udviklet af Samarth Jajoo, og dens hovedfunktion er "Run code across the web on repl.it".
Udvidelsesskærmbilleder
Download Repl.it-udvidelses-CRX-fil
Download Repl.it-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 👨💻 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kihnihckibjknmebghcjpmemaginnipl |
| Officiel URL | https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl |
| Beskrivelse | Run code across the web on repl.it |
| Filstørrelse | 12.2 KB |
| Antal Installationer | 4,669 |
| Nuværende Version | 0.9 |
| Senest Opdateret | 2019-12-15 |
| Udgivelsesdato | 2019-12-10 |
| Bedømmelse | 4.17/5 Samlet 6 Bedømmelser |
| Udvikler | Samarth Jajoo |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/jajoosam/repl.it-chrome |
| Understøttede Sprog | 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"
]
} | |