GEditor - GitHub Button Editor
GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
什麼是GEditor - GitHub Button Editor?
GEditor - GitHub Button Editor是由https://kopi.dev開發的Chrome擴展程式,該擴展的主要功能是“GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.”。
擴展截圖
下載GEditor - GitHub Button Editor擴展crx文件
下載GEditor - GitHub Button Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
I always find it inconvenient to read code on GitHub, and even with things like Octotree, I always find it too much trouble to cut around and too slow to clone down some of the libraries, so I came up with the idea of having an online VS Code tool to read GitHub code 擴展基本資訊
| 名稱 | |
| ID | cpfldfidpgollddlhpbgflolgjdlfnob |
| 官方網址 | https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob |
| 簡介 | GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms. |
| 檔案大小 | 152 KB |
| 安裝次數 | 32 |
| 目前版本 | 0.0.0.2 |
| 更新時間 | 2021-03-25 |
| 上架時間 | 2021-03-25 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://kopi.dev |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 說明頁面URL | https://kopi.dev |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GEditor - GitHub Button Editor",
"description": "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.",
"version": "0.0.0.2",
"browser_action": {
"default_title": "GEditor"
},
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
},
"manifest_version": 2,
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*:\/\/github.com\/*"
],
"run_at": "document_end"
}
]
} | |