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 |
| 电子邮箱 | [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"
]
} | |