Github Open With
Open your Github repository with 3rd party web IDEs
Wat is Github Open With?
Github Open With is een Chrome-extensie ontwikkeld door nir, en de belangrijkste functie is "Open your Github repository with 3rd party web IDEs".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Open With
Download Github Open With-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
Chrome extension that helps you open Github repositories in a different 3rd party IDES. When navigating to any github repository, you can click on the green code button and see new options: - Open in Github Dev - Open in Github1s - Open in StackBlitz - Open in CodeSandbox
Basisinformatie over de Extensie
Naam | Github Open With |
ID | dggpihfahccepeedgkckjlcfgnfbjofe |
Officiële URL | https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe |
Beschrijving | Open your Github repository with 3rd party web IDEs |
Bestandsgrootte | 11.29 KB |
Aantal Installaties | 194 |
Huidige Versie | 1.2.0 |
Laatst Bijgewerkt | 2023-09-19 |
Publicatiedatum | 2021-06-12 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | nir |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/nirtamir2/github-open-repository-with |
Help Pagina-URL | https://github.com/nirtamir2/github-open-repository-with |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Open With", "version": "1.2.0", "description": "Open your Github repository with 3rd party web IDEs", "author": "Nir Tamir", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with", "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*\/*", "https:\/\/*.github.com\/*\/*" ], "all_frames": true, "js": [ "contentScript.js" ] } ] } |