Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
What is Github-Editors?
Github-Editors is a Chrome extension developed by tclaude94, and its main feature is "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.".
Extension Screenshots
Download Github-Editors Extension CRX File
Download Github-Editors extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Github-Editors |
ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
Official URL | https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna |
Description | Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer. |
File Size | 341 KB |
Installation Count | 66 |
Current Version | 0.2.0 |
Last Updated | 2021-02-15 |
Publish Date | 2021-02-15 |
Rating | 5.00/5 Total 2 Ratings |
Developer | tclaude94 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |