Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
什麼是Github-Editors?
Github-Editors是由tclaude94開發的Chrome擴展程式,該擴展的主要功能是“Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.”。
擴展截圖
下載Github-Editors擴展crx文件
下載Github-Editors擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension improves your user experience on GitHub by adding several buttons like:
- VSCode cloning
- Jetbrains' Suite cloning
- Open the repo on GitHub1s
- Open the repo on CodeSandbox
-- Report an issue or submit an improvement
You can report an issue or submit an improvement (like adding support for a new editor) on Github
Repository can be found here : https://github.com/tclaude94/VSCodeGithub 擴展基本資訊
| 名稱 | |
| ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
| 官方網址 | https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna |
| 簡介 | Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer. |
| 檔案大小 | 341 KB |
| 安裝次數 | 66 |
| 目前版本 | 0.2.0 |
| 更新時間 | 2021-02-15 |
| 上架時間 | 2021-02-15 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | tclaude94 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": "img\/logo.png",
"default_title": "Github-Editors",
"default_popup": ".\/options\/options.html"
},
"content_scripts": [
{
"js": [
"constants.js",
"main.js"
],
"matches": [
"https:\/\/github.com\/*"
]
}
],
"description": "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.",
"manifest_version": 2,
"name": "Github-Editors",
"short_name": "GHE",
"version": "0.2.0",
"web_accessible_resources": [
"img\/*",
"img\/icons\/*"
],
"icons": {
"128": "img\/logo.png",
"16": "img\/logo.png",
"48": "img\/logo.png"
},
"options_ui": {
"page": "\/options\/options.html",
"open_in_tab": false
},
"permissions": [
"storage"
]
} | |