Online GitHub Python Interpreter
Run python files from within GitHub file pages.
Что такое Online GitHub Python Interpreter?
Online GitHub Python Interpreter - это расширение Chrome, разработанное zacharysmith, и его основная функция - "Run python files from within GitHub file pages.".
Снимки экрана расширения
Скачать файл CRX расширения Online GitHub Python Interpreter
Скачайте файлы расширений Online GitHub Python Interpreter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension creates additional UI within the GitHub file viewer, allowing users to run python files within the browser. Основная информация о расширении
| Название | |
| ID | mkmapiapghfhdcoeeiolakohloepklka |
| Официальный URL | https://chromewebstore.google.com/detail/online-github-python-inte/mkmapiapghfhdcoeeiolakohloepklka |
| Описание | Run python files from within GitHub file pages. |
| Размер файла | 338 KB |
| Количество установок | 218 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2021-09-07 |
| Дата публикации | 2021-09-06 |
| Разработчик | zacharysmith |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Cutwell/github-browser-python-runtime |
| URL страницы помощи | https://github.com/Cutwell/github-browser-python-runtime/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Online GitHub Python Interpreter",
"version": "1.1",
"description": "Run python files from within GitHub file pages.",
"page_action": {
"default_icon": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
}
},
"icons": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
},
"content_scripts": [
{
"js": [
"data\/skulpt\/skulpt.min.js",
"data\/skulpt\/skulpt-stdlib.js",
"data\/js\/content.js"
],
"matches": [
"https:\/\/github.com\/*"
]
}
],
"manifest_version": 2
} | |