Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
Github-Editorsคืออะไร?
Github-Editors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tclaude94 และคุณลักษณะหลักของมันคือ "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github-Editors
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github-Editors |
ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
URL อย่างเป็นทางการ | 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" ] } |