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 |
| 官方網址 | 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"
]
} | |