Repl.it
Run code across the web on repl.it
Vad är Repl.it?
Repl.it är en Chrome-tillägg utvecklad av Samarth Jajoo, och dess huvudfunktion är "Run code across the web on repl.it".
Tilläggsskärmbilder
Ladda ner Repl.it-förlängningens CRX-fil
Ladda ner Repl.it-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | kihnihckibjknmebghcjpmemaginnipl |
| Officiell webbadress | https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl |
| Beskrivning | Run code across the web on repl.it |
| Filstorlek | 12.2 KB |
| Antal Installationer | 4,669 |
| Aktuell Version | 0.9 |
| Senast Uppdaterad | 2019-12-15 |
| Publiceringsdatum | 2019-12-10 |
| Betyg | 4.17/5 Totalt 6 Betyg |
| Utvecklare | Samarth Jajoo |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/jajoosam/repl.it-chrome |
| Stödda Språk | 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"
]
} | |