Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
Wat is Github-Editors?
Github-Editors is een Chrome-extensie ontwikkeld door tclaude94, en de belangrijkste functie is "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.".
Extensie Screenshots
Download het CRX-bestand van de extensie Github-Editors
Download Github-Editors-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Github-Editors |
ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
Officiële URL | https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna |
Beschrijving | Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer. |
Bestandsgrootte | 341 KB |
Aantal Installaties | 66 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2021-02-15 |
Publicatiedatum | 2021-02-15 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | tclaude94 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |